如何使用正则表达式“包含此单词”

时间:2013-07-31 20:56:12

标签: regex google-analytics

我正在尝试在Google Analytics中设置跟踪功能。

目标网址为:

www.example.com/jdsfdf?sdfffs#/thankYou

每次Google Analytics在网址中看到#/thankYou时,我都希望将其归为转化。

如何使用正则表达式来说if the URL contains #/thankYou, then it's a conversion

2 个答案:

答案 0 :(得分:1)

您不需要正则表达式来进行精确的字符串匹配,但如果必须

/#\/thankYou/

@Sundar points out,您可能不需要逃避任何事情:

#/thankYou

答案 1 :(得分:0)

这个正则表达式对你有效(显然在正斜杠上不需要转义):

#/thankYou$

美元符号表示您需要此字符串显示为URL的末尾。如果你不要求谢谢你到底,那就删除美元符号。