Answers for "js get int from string"

3

js get number from string

thenum = "foo3bar5".match(/\d+/)[0] // "3"
Posted by: Guest on January-08-2021
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language