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

我试着:

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

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

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


当前回答

使用匹配函数。

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

其他回答

试试下面的:string。替换(/ [^ 0 - 9]/ g,”);这将删除所有非数字字符,在字符串中只留下数字

function retnum(str) { 
    var num = str.replace(/[^0-9]/g, ''); 
    return parseInt(num,10); 
}

console.log(“abca12bc45qw”。替换(/ [^ 0 - 9]/ g, ")); console.log(“# box2”。替换(/ [^ 0 - 9]/ g, "));

请检查下面的JavaScript代码。在那里你只能得到一个数字。

var txt=“abc1234char5678#!9”; var str = txt.match(/\d+/g, “”) + ''; var s = str.split(',').join(''); 警报(数量);

输出:1234567789

函数只是数字(字符串) { var numsStr = string.replace(/[^0-9]/g, ''); 返回 parseInt(numsStr); } console.log(justNumbers('abcdefg12hijklmnop'));

你可以做一个这样的函数

function justNumbers(string)
{
    var numsStr = string.replace(/[^0-9]/g, '');
    return parseInt(numsStr);
}

记住:如果数字前面有一个0,int就不会有它

我认为这个正则表达式可以满足你的目的:

var num = txt.replace(/[^0-9]/g, '');

txt是你的字符串。

它基本上会扯掉任何不是数字的东西。

我认为你也可以通过使用这个来达到同样的目的:

var num = txt.replace(/\D/g, '');
var elValue = "-12,erer3  4,-990.234sdsd";

var isNegetive = false;
if(elValue.indexOf("-") == 0)
    isNegetive = true;

elValue = elValue.replace( /[^\d\.]*/g, '');
elValue = isNaN(Number(elValue)) ? 0 : Number(elValue);

if(isNegetive)
    elValue = 0 - elValue;

alert(elValue); // -1234990.234