Convert the numerical portion of a string into a float.
a_float = stringtofloat(string_to_convert)
stringtofloat returns a float containing the numerical portion of a passed-in string, if found. Otherwise it returns 0.0.
a_float = stringtofloat("xxxyyy23.55zzq") // will return 23.55
a_float = stringtofloat("abcd7DEFGH9") // will return 7 (stops at first non-numeric)
a_float = stringtofloat("hello world") // will return 0.0