标签: regex google-analytics
我正在使用正则表达式从报告工具中提取数据。
以下是范围:
cid=300000[195-429]
我尝试了?cid=[300000195]-[300000429]
?cid=[300000195]-[300000429]
但他们没有工作。
cid是字符串的一部分。因此,例如,返回?cid = 300000197并返回?cid = 300000300
介于两者之间。
正确的正则表达式语法是什么?
答案 0 :(得分:1)
试试这个:
cid=30000(19[5-9]|[2-3]\d{2}|4[0-2]\d)
Paste the regex here and give it a try.