我有一个字符串,在PHP中,字符串出现模式%%abc%%(some substring)%%xyz%%
主字符串中出现多次此类子字符串。
这些事件中的每一个都需要用数组中的字符串替换
array('substring1','substring2','substring3','substring4')
取决于function()
的响应,它返回1到4之间的整数。
我无法找到一种有效的方法。
答案 0 :(得分:7)
这种情况需要preg_replace_callback
:
// Assume this already exists
function mapSubstringToInteger($str) {
return (strlen($str) % 4) + 1;
}
// So you can now write this:
$pattern = '/%%abc%%(.*?)%%xyz%%/';
$replacements = array('r1', 'r2', 'r3', 'r4');
$callback = function($matches) use ($replacements) {
return $replacements[mapSubstringToInteger($matches[1])];
};
preg_replace_callback($pattern, $callback, $input);
答案 1 :(得分:1)
使用preg_replace_callback()
,如下所示:
preg_replace_callback( '#%%abc%%(.*?)%%xyz%%#', function( $match) {
// Do some logic (with $match) to determine what to replace it with
return 'replacement';
}, $master_string);