Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating resource.
Please try to avoid dependencies to third-party libraries and frameworks.
(read-string s)
(Float/parseFloat s)
float f = std::stof(s);
var f=float.Parse(s);
f = num.parse(s);
read (unit=s,fmt=*) f
read(s,'(g0)')f
read s :: Double
let f = +s
String floatString = "14.5"; float x = Float.parseFloat(floatString); double y = Double.parseFloat(floatString);
$f = floatval($s);
my $f = $s;
f = float(s)
f = float(s)
f = s.to_f
let f = s.parse::<f32>().unwrap();
let f: f32 = s.parse().unwrap();