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

我试着:

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

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

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


当前回答

您需要添加“(/\d+/g)”,这将删除所有非数字文本,但它仍然是一个字符串。如果您通过匹配创建了一个变量和“parseInt”,您可以将新变量设置为数组值。下面是我如何让它工作的一个例子:

    var color = $( this ).css( "background-color" );
    var r = parseInt(color.match(/\d+/g)[0]);
    var g = parseInt(color.match(/\d+/g)[1]);
    var b = parseInt(color.match(/\d+/g)[2]);

其他回答

无正则表达式的:

没有正则表达式 函数提取数字(字符串) { let numArray = string.split('').map(item => { if (typeof +item === 'number' && !isNaN(+item)) 退货 +商品 }) return +numArray.join('') } 提取数字('@1200milion$') // 1200

如果你想从价格(如$6,694.20)中解析一个数字,可以这样做:

parseFloat('$6,694.20'.replace(/^\D|,+/g, ''))

或者通过函数:

function parsePrice(value) {
  return parseFloat(value.replace(/^\D|,+/g, ''))
}

parsePrice('$6,694.20') // 6694.2
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

我尝试了前一个答案中引用的所有组合与此代码,并得到了它的工作。→(12)3456-7890

var str = "(12) 3456-7890";
str.replace(/\D+/g, '');

结果:“1234567890”

注意事项:我知道这样的字符串不会在属性上,但无论如何,解决方案是更好的,因为它更完整。

对于#box2这样的字符串,这应该是有效的:

var thenum = thestring.replace(/^.*?(\d+).*/,'$1');

jsFiddle:

http://jsfiddle.net/dmeku/