标签: php
我有一个html文件,其中包含以ftps,http,https,mms,ed2k ..开头的url以及某些段落。我需要对这些链接进行排序并删除所有以mms://开头的链接。我试过preg_replace但它不起作用因为很多链接太长了。谁能建议一个很好的方法来删除使用PHP的链接?
答案 0 :(得分:0)
我不明白为什么preg_replace不起作用,长度应该不是问题。
试试这个
preg_replace("/mms:\/\/(.*?)\s/is", "", $string);