鑑於以下字符串如何使用PHP從字符串中刪除子字符串?
http://thedude.com/05/simons-cat-and-frog-100x100.jpg
我想用substr
或trim
(或任何你找到更合適)返回此
http://thedude.com/05/simons-cat-and-frog.jpg
也就是說,除去-100x100
。我需要的所有圖像都會在擴展名之前立即標記爲文件名的末尾。
似乎有對此迴應紅寶石和Python,但不是PHP /特定於我的需要。
How to remove the left part of a string?
Remove n characters from a start of a string
Remove substring from the string
有什麼建議?
你打算硬編碼子字符串的值嗎?或者你想匹配任何-WIDTHxHEIGHT.ext形式的子字符串? –
你介意鏈接到你找到的Ruby和Python版本嗎?那裏使用的技術可能是相關的。 – Ryan
@minitech - 在OP – pepe