I know that we can extract an integer value from a string using
var x = "> 1";
x = parseInt(x.match(/\d+/)[0], 10));
How do I get a float value from a string
example: var x = "> 1.1"
I know we can just use x.substring(2);
But for a more generic solution? since the above will not give the accurate result for
var x = "1.1"
So what is the best way to extract the float value 1.1 from
var x = "> 1.1"
/\d+\.?\d*/