如何在url中提取数字字符串

时间:2015-02-18 10:04:10

标签: javascript regex

我想知道如何使用javascript在网址中提取数字字符串?说要http://example.com?uid=1234

获得1234

1 个答案:

答案 0 :(得分:0)

使用正则表达式。 \ d是任何数字,+是1或更多。

var str = 'http://example.com?uid=1234';
var regexp = /\d+/;

str = str.match(regexp);

console.log(parseInt(str));