如何编写正则表达式来匹配URL; s?

时间:2013-07-01 16:12:13

标签: regex

我正在尝试编写正则表达式以匹配以下网址:

/jsp/offer/recr/us/wsj/recoffertemp2flow1.jsp?offerId=67700184&promoCode=4935003 /jsp/offer/recr/us/wsj/recoffertemp2flow1.jsp?offerId=67700185&promoCode=4935005 米/ JSP /报价/ RECR / US / WSJ / recoffertemp2flow1.jsp OFFERID = 67700189&安培;促销码= 4935006

我该怎么办?基本上,offerID和promoCode会发生变化 - 但其他一切都是不变的。

由于 杰克

3 个答案:

答案 0 :(得分:0)

您可以使用:

^/jsp/offer/recr/us/wsj/recoffertemp2flow1\.jsp\?offerId=\d+\&promoCode=\d+$

但请注意,如果更改参数顺序,此正则表达式将失败。

答案 1 :(得分:0)

根据您使用的语言,以下正则表达式应与这些URL匹配,并允许您在需要时提取offerId和promoCode的值:

\/jsp\/offer\/recr\/us\/wsj\/recoffertemp2flow1.jsp\?offerId=(\d+)&promoCode=(\d+)

答案 2 :(得分:0)

/jsp/offer/recr/us/wsj/recoffertemp2flow1\.jsp\?offerId=\d+&promoCode=\d+

您可以使用(red|blue|green)表达式匹配更多网址,例如: (/jsp/offer/recr...\d+|/second/URL/to/match|/third/URL/to/match)等等。

有关语法的详细信息,请参阅JavaScript RegExp Object