Let\'s suppose I have a string that contains \"7.2769482308e+01\" (this number came from 3rd party software, I cannot control the format).
What is t
What about a simple cast to a float value ?
$string = "7.2769482308e+01"; $float = (float) $string;