我在PHP中使用preg_replace来查找和替换字符串中的特定单词,如下所示:
$subject = "Apple apple";
print preg_replace('/\bapple\b/i', 'pear', $subject);
结果'梨梨'。
我希望能够做的是以不区分大小写的方式匹配单词,但是当它被替换时尊重它的情况 - 给出结果'梨梨'。
以下作品,但似乎有点长篇大论:
$pattern = array('/Apple\b/', '/apple\b/');
$replacement = array('Pear', 'pear');
$subject = "Apple apple";
print preg_replace($pattern, $replacement, $subject);
有更好的方法吗?
更新:继续下面提出的一个出色的查询,为了完成这项任务,我只想尊重'标题案例' - 所以一个单词的第一个字母是否是一个大写。
答案 0 :(得分:11)
我想到了这种常见情况的实现:
$data = 'this is appLe and ApPle';
$search = 'apple';
$replace = 'pear';
$data = preg_replace_callback('/\b'.$search.'\b/i', function($matches) use ($replace)
{
$i=0;
return join('', array_map(function($char) use ($matches, &$i)
{
return ctype_lower($matches[0][$i++])?strtolower($char):strtoupper($char);
}, str_split($replace)));
}, $data);
//var_dump($data); //"this is peaR and PeAr"
- 当然,它更复杂,但适合任何职位的原始要求。如果你只找第一个字母,这可能是一个矫枉过正(请参阅@ Jon的回答)
答案 1 :(得分:10)
你可以使用preg_replace_callback
执行此操作,但这更加冗长:
$replacer = function($matches) {
return ctype_lower($matches[0][0]) ? 'pear' : 'Pear';
};
print preg_replace_callback('/\bapple\b/i', $replacer, $subject);
此代码只是查看匹配的第一个字符的大写,以确定要替换的内容;你可以调整代码来做更多涉及的事情。
答案 2 :(得分:3)
这是我使用的解决方案:
$result = preg_replace("/\b(foo)\b/i", "<strong>$1</strong>", $original);
最好的话,我可以尝试解释为什么会这样:用()
包装搜索字词意味着我想稍后访问此值。由于它是RegEx中pars的第一项,因此可以使用$1
访问它,您可以在替换参数中看到