dongzhan1948 2017-01-13 04:00
浏览 284
已采纳

正则表达式在url中获取文件类型

I am using a converter that accepts Regex to do a mass "search and replace" in a database to change all .png to .jpg. Consider the following where a link to an image is mixed in with a lot of HTML code (simplified example):

bunch_of_text_http:// somewebsite.com/somepath/somefile.png_bunch_of_text

The "bunch_of_text" and "some-x" are all variables.

For clarification, the only .png's I need changed must follow a mostly prescribed URL. For example, I need to replace all .png's on the example.com domain but not on other domains. Here's another example:

Convert: http://example.com/images/XX/YY/filename.png to http://example.com/images/XX/YY/filename.jpg

WHERE

XX and YY are variables and may be at any level of depth in the folder structure.

But ignore any other domain other than example.com.

The code on the backend is written in PHP.

I need one line of Regex code to return only the ".png" text so my script can replace that with ".jpg". Any help is greatly appreciated.

  • 写回答

3条回答 默认 最新

  • duanmei4362 2017-01-13 05:01
    关注
    $url = "http://example.com/images/XX/YY/filename.png";
    $result = preg_replace(';(http://example.com/images/.*?/.*?/.*?)\.png;', '$1.jpg', $url);
    echo $result;
    

    Some regular expression explanation: https://regex101.com/r/2ZDzq0/1

    Note I've replaced the usual / delimiter with ; because it's easier when working with URLs.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?