js get number from string code example
Example 1: js extract only numbers from string
"1.23-45/6$7.8,9".replace(/[^0-9]/g,'')
Example 2: javascript extract number from string
var text = $('#foo').text();
var number = parseInt(text, 10);
alert(number);
Example 3: js get number from string
thenum = "foo3bar5".match(/\d+/)[0]
Example 4: javascript find a digit in str
var regex = /\d+/g;
var string = "Any string you want!";
var matches = string.match(regex);
if (matches){
} else {
}
Example 5: javascript convert a number in string
const num = 123;
const str = num.toString();