匹配url中的任何这些字符串

时间:2013-11-01 19:50:22

标签: regex google-analytics

我想使用正则表达式来确定网址是否包含任意数量的字符串(例如“string1”或“string2”)

我试过string1 | string2。不工作。想法?

===========

Codespy的解决方案适用于上述方案。谢谢!但是想要更多地修改我的问题。如果我想要执行以下操作该怎么办:

  1. 匹配“abcd”或“efgh”或(任何包含“IJKL”和“.MP3”的网址

1 个答案:

答案 0 :(得分:1)

尝试使用以下RegExp来解决您的问题。

//to match a stringX (X is any digit) pattern string
string[0-9]*

//to match any words 
[A-Za-z]*

//matches anything.mp3
([a-zA-Z0-9]+)(\.mp3)$

A Demo of RegExp using jQuery