Answers for "get all number from string javascript"

0

get number from string javascript

str = "hello123!"	
str.match(/(\d+)/)[1]	//Best way to find first matching number in string ;)
Posted by: Guest on October-10-2021
2

javascript extract number from string

// Html: <span id="foo">280ms</span>

var text = $('#foo').text();
var number = parseInt(text, 10);
alert(number);

// parseInt('ms120'.replace(/[^0-9\.]/g, ''), 10);
Posted by: Guest on May-06-2020

Code answers related to "get all number from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language