Número do filtro em String JavaScript
str = "hello123!"
str.match(/(\d+)/)[1] //Best way to find first matching number in string ;)
Armandres
str = "hello123!"
str.match(/(\d+)/)[1] //Best way to find first matching number in string ;)