regexp简单模式

时间:2011-10-26 19:03:19

标签: php regex url

我有文字:

Hello please click this:  
    https://active.gameta.com/VE?service=proservice&c=CMzc-53lyIbqVBCXzc62-YP64BM&hl=pl.  
    And follow the instructions if you have problems click
    http://problems.com/contact.php

我需要这个https://active.gameta.com/VE?service=proservice&c=CMzc-53lyIbqVBCXzc62-YP64BM&hl=pl怎么样?在PHP的正则表达式

1 个答案:

答案 0 :(得分:1)

有数百万种不同的正则表达式可行,因为你的问题非常模糊。请扩展您尝试过的内容,您想要做什么(替换/搜索/等)。但...

以下是一些应该匹配的内容(根据您的具体情况,可能需要使用/转义\/):

https(.*)
https(.*)$
https:(.*)
https:(.*)$
https://(.*)
https://(.*)$
https://active\.gameta\.com/(.*)
https://active\.gameta\.com/(.*)$
etc...