我在 JavaScript 中有一个字符串(例如#box2
),我只想要2
它。
我试过:
var thestring = $(this).attr('href');
var thenum = thestring.replace( /(^.+)(\w\d+\w)(.+$)/i,'$2');
alert(thenum);
它仍然#box2
在警报中返回,我怎样才能让它工作?
它需要适应末端附加的任何长度数字。
我在 JavaScript 中有一个字符串(例如#box2
),我只想要2
它。
我试过:
var thestring = $(this).attr('href');
var thenum = thestring.replace( /(^.+)(\w\d+\w)(.+$)/i,'$2');
alert(thenum);
它仍然#box2
在警报中返回,我怎样才能让它工作?
它需要适应末端附加的任何长度数字。
对于这个特定的例子,
var thenum = thestring.replace( /^\D+/g, ''); // replace all leading non-digits with nothing
在一般情况下:
thenum = "foo3bar5".match(/\d+/)[0] // "3"
由于此答案由于某种原因而广受欢迎,因此有一个好处:正则表达式生成器。
function getre(str, num) {
if(str === num) return 'nice try';
var res = [/^\D+/g,/\D+$/g,/^\D+|\D+$/g,/\D+/g,/\D.*/g, /.*\D/g,/^\D+|\D.*$/g,/.*\D(?=\d)|\D+$/g];
for(var i = 0; i < res.length; i++)
if(str.replace(res[i], '') === num)
return 'num = str.replace(/' + res[i].source + '/g, "")';
return 'no idea';
};
function update() {
$ = function(x) { return document.getElementById(x) };
var re = getre($('str').value, $('num').value);
$('re').innerHTML = 'Numex speaks: <code>' + re + '</code>';
}
<p>Hi, I'm Numex, the Number Extractor Oracle.
<p>What is your string? <input id="str" value="42abc"></p>
<p>What number do you want to extract? <input id="num" value="42"></p>
<p><button onclick="update()">Insert Coin</button></p>
<p id="re"></p>
您应该尝试以下操作:
var txt = "#div-name-1234-characteristic:561613213213";
var numb = txt.match(/\d/g);
numb = numb.join("");
alert (numb);
结果
1234561613213213
我认为这个正则表达式将满足您的目的:
var num = txt.replace(/[^0-9]/g,'');
txt
你的字符串在哪里。
它基本上撕掉了任何不是数字的东西。
我认为你也可以通过使用它来达到同样的目的:
var num = txt.replace(/\D/g,'');
尝试以下操作:string.replace(/[^0-9]/g, '');
这将删除所有非数字字符,只留下字符串中的数字
function retnum(str) {
var num = str.replace(/[^0-9]/g, '');
return parseInt(num,10);
}
console.log('abca12bc45qw'.replace(/[^0-9]/g, ''));
console.log('#box2'.replace(/[^0-9]/g, ''));
使用匹配功能。
var thenum = "0a1bbb2".match(/\d+$/)[0];
console.log(thenum);