我有一个网址,可以说:
google.com/?ZipCode=77007
如何仅返回URL的数字部分?我正在使用Google Analytics(分析)正则表达式。
我尝试过这样的事情: \ d {5} 并且它与URL匹配,但不仅隔离了数字。
谢谢!
答案 0 :(得分:0)
如果我们只想获取邮政编码,则这些表达式可能会起作用:
ZipCode=([0-9]+)
ZipCode=([0-9]{5})
ZipCode=(\d+)
ZipCode=(\d{5})
所有这些都缺少捕获组()
,我想这就是这里的问题。
jex.im可视化正则表达式:
const regex = /ZipCode=(\d+)/gm;
const str = `google.com/?ZipCode=77007`;
let m;
while ((m = regex.exec(str)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex) {
regex.lastIndex++;
}
// The result can be accessed through the `m`-variable.
m.forEach((match, groupIndex) => {
console.log(`Found match, group ${groupIndex}: ${match}`);
});
}