检查正则表达式中的url字符串

时间:2015-12-15 10:09:19

标签: regex

承认我写的是正则表达式。请帮我解决如何为success-apply创建的http://www.example.com/success-apply/正则表达式,就像fieldData[2]

一样

2 个答案:

答案 0 :(得分:1)

假设模式success-apply发生变化:

example\.com\/([^\/]+)
# capture everything that is not a forward slash one or unlimited times

以下是this regex example和PCRE(PHP)。

如果你只是想知道字符串是否那么,那么正则表达式似乎有些过分。请考虑以下PHP代码:

if (strpos($url, 'success-apply') !== FALSE) {
   // do sth useful
}

答案 1 :(得分:0)

这是你在找什么?

(success-apply)