我有一个JavaScript字符串(例如,#box2),我只是想从它的2。

我试着:

var thestring = $(this).attr('href');
var thenum = thestring.replace(/(^.+)(\w\d+\w)(.+$)/i, '$2');
alert(thenum);

它仍然在警告中返回#box2。我怎样才能让它工作呢?

它需要适应任何长度的数字附着在末端。


当前回答

这个答案将涵盖大多数场景。当一个用户试图复制粘贴电话号码时,我遇到了这种情况。

$('#help_number').keyup(function() {
  $(this).val().match(/\d+/g).join("")
});

解释:

str = "34%^gd 5-67 6-6ds"

str.match(/\d+/g)

它将给出一个字符串数组作为输出:

["34", "56766"]

 

str.match(/\d+/g).join("")

Join()将转换该数组数据并将其连接为单个字符串。

输出:

"3456766"

在我的例子中,我需要输出为209-356-6788,所以我使用replace():

$('#help_number').keyup(function() {
  $(this).val($(this).val().match(/\d+/g).join("").replace(/(\d{3})\-?(\d{3})\-?(\d{4})/, '$1-$2-$3'))
});

其他回答

下面是一个无数据检查的解决方案:

var someStr = 'abc'; // Add 123 to string to see the inverse

var thenum = someStr.match(/\d+/);

if (thenum != null)
{
    console.log(thenum[0]);
}
else
{
    console.log('Not a number');
}

可以使用正则表达式。

var txt="some text 2";
var numb = txt.match(/\d/g);
alert (numb);

那会引起警报。

这个答案将涵盖大多数场景。当一个用户试图复制粘贴电话号码时,我遇到了这种情况。

$('#help_number').keyup(function() {
  $(this).val().match(/\d+/g).join("")
});

解释:

str = "34%^gd 5-67 6-6ds"

str.match(/\d+/g)

它将给出一个字符串数组作为输出:

["34", "56766"]

 

str.match(/\d+/g).join("")

Join()将转换该数组数据并将其连接为单个字符串。

输出:

"3456766"

在我的例子中,我需要输出为209-356-6788,所以我使用replace():

$('#help_number').keyup(function() {
  $(this).val($(this).val().match(/\d+/g).join("").replace(/(\d{3})\-?(\d{3})\-?(\d{4})/, '$1-$2-$3'))
});

使用匹配函数。

var thenum = “0a1bbb2”.match(/\d+$/)[0]; console.log(thenum);

要从字符串返回int,可以执行以下代码。它删除所有非数字字符并返回一个整数。

Number("strin[g]3".replace(/\D+/g, ""))