我嘗試解析內容並找到Soundcloud網址。我的正則表達式可以工作,但不會在空間後停止捕捉。url:停止空間捕獲
$re = '/((http:\/\/(soundcloud\.com\/.*|soundcloud\.com\/.*\/.*|soundcloud\.com\/.*\/sets\/.*|soundcloud\.com\/groups\/.*|snd\.sc\/.*))|(https:\/\/(soundcloud\.com\/.*|soundcloud\.com\/.*\/.*|soundcloud\.com\/.*\/sets\/.*|soundcloud\.com\/groups\/.*)))/i';
正如你可以在這裏看到https://regex101.com/r/4BZhlu/1當URL是直列它不會停止。
在此先感謝。
替換所有'*'和'\ S *'。 –