flter number from string in javascript code example
Example 1: js extract only numbers from string
"1.23-45/6$7.8,9".replace(/[^0-9]/g,'')
Example 2: javascript letters as number
const toChars = n => `${n >= 26 ? toChars(Math.floor(n / 26) - 1) : ''}${'ABCDEFGHIJKLMNOPQRSTUVWXYZ'[n % 26]}`;
toChars(0);
toChars(1);
toChars(25);
Example 3: 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 4: javascript convert string to number
var myInt = parseInt("10.256");
var myFloat = parseFloat("10.256");