php 正则函数怎么实现匹配替换?
php正则表达式的匹配与替换
只介绍两个与perl兼容的正则表达式函数:
1.preg_match_all 函数执行正则表达式匹配与搜索;
2.preg_replace 函数执行正则表达式匹配与替换。
示例代码:
"; /* * 2.正则表达式的匹配与搜索 */ if(preg_match_all($pattern, $text, $matches, preg_set_order)){ print_r($matches); } echo "
"; echo "
匹配到".count($matches)."处字符串。"; echo "
分别是:"; foreach($matches as $value){ echo "
".$value[0]; }
执行后的效果:
]*>)/e"; $pattern = "/(<\/?)(\w )([^>]*>)/"; $text = "这个文本中有粗体和带有下划线以下斜体还 有带有颜色和字体大小的标记。"; //echo preg_replace($pattern, "'\\1' . strtoupper('\\2') . '\\3'", $text); echo preg_replace_callback($pattern, function($r){ return $r[1].strtoupper($r[2]).$r[3]; }, $text);
执行后的效果: