2011-10-26 69 views
-1

我有文字:正則表達式容易模式

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如何?在regxp在php

+0

如果(的preg_match('%https://開頭活躍\ .gameta \ .com/VE \?service = proservice&c = CMzc-53lyIbqVBCXzc62-YP64BM&hl = pl%',$ subject,$ regs)){ \t $ result = $ regs [0]; } – FailedDev

+0

@FailedDev c =變化 – hades

+0

我不確定你在問什麼。你想在實際的HTML超鏈接中轉換文本鏈接嗎? –

回答

1

有數百萬不同的正則表達式的工作,因爲你的問題是超級模糊的。請詳細說明您嘗試過的內容,您想要做什麼(替換/搜索/等)。但是......

這裏有一些是應該匹配(可能需要躲避/\/根據您的情況):

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

不能正常工作 – hades

+0

@hades查看我的編輯。 – chown