2

我如何在 PHP 中使用正则表达式来实现这一点

http://www.domain.com/path/to/image/ipsum_image.jpg

匹配这个并忽略大小部分

http://www.domain.com/path/to/image/ipsum_image-300x200.jpg

请记住,300x200 可以是任何东西,从 4charsx4chars 到 1charx1char

4

2 回答 2

3
$subject = 'http://www.domain.com/path/to/image/ipsum_image-300x200.jpg';
$result = preg_replace('&(-[0-9]{1,4}x[0-9]{1,4})&is', '', $subject); 
echo $result;
于 2012-07-13T23:04:26.433 回答
0
$str= "http://www.domain.com/path/to/image/ipsum_image-300x200.jpg";
$regex= '/(\d{1,4})x(\d{1,4}).jpg$/i';
preg_match($regex, $str, $match, PREG_OFFSET_CAPTURE, 3);
print_r($match);
于 2012-07-13T23:05:40.713 回答