帮我把这个角色放在一个代码中
从这个网址:所有这个$ char
先谢谢..
答案 0 :(得分:0)
你需要这个正则表达式
/httpq:\/\/([\d+]{1,3}[\.|\/])+[^\/]+\/(\S+)\/.*/
示例:
$str = "httpq://199.91.153.63/7otxr1alp53g/kfz254yae7cw8fb/1-Yes%26metalica.mp3";
$regex = "/httpq:\/\/([\d+]{1,3}[\.|\/])+[^\/]+\/(\S+)\/.*/";
echo preg_replace($regex, "$2", $str);