标签: javascript
我试图从字符串中获取数字,请看下面的代码片段,我尝试" parseInt"但不幸的是没有工作,有任何帮助,想法吗?
var tt = "test 12"; console.log(parseInt(tt));
答案 0 :(得分:4)
parseInt()无效,因为tt不以数字开头。
parseInt()
tt
您可以使用match()和RegEx从字符串中提取数字。
match()
var num = tt.match(/\d+/)[0];