xxxxxxxxxx
void main()
{
import std.algorithm, std.conv, std.range, std.string, std.stdio;
auto r = ["23", "42", "14.3", "-323", "}"];
r.until!(x => !x.isNumeric).map!(to!double).writeln;
}