nomor filter dalam string javascript

str = "hello123!"	
str.match(/(\d+)/)[1]	//Best way to find first matching number in string ;)
Armandres