使用Google Analytics(分析)正则表达式仅返回字符串中的数字

时间:2019-06-10 16:48:43

标签: regex google-analytics

我有一个网址,可以说:

google.com/?ZipCode=77007

如何仅返回URL的数字部分?我正在使用Google Analytics(分析)正则表达式。

我尝试过这样的事情:     \ d {5} 并且它与URL匹配,但不仅隔离了数字。

谢谢!

1 个答案:

答案 0 :(得分:0)

如果我们只想获取邮政编码,则这些表达式可能会起作用:

ZipCode=([0-9]+)
ZipCode=([0-9]{5})
ZipCode=(\d+)
ZipCode=(\d{5})

所有这些都缺少捕获组(),我想这就是这里的问题。

Demo 1

RegEx电路

jex.im可视化正则表达式:

enter image description here

演示

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}`);
    });
}