📜  过滤字符串中的数字 javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:53.347000             🧑  作者: Mango

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