PHPereg_repalce( )

Posted 忆华灯纵博

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHPereg_repalce( )相关的知识,希望对你有一定的参考价值。

ereg_replace — 正则表达式替换

string ereg_replace ( string $pattern , string $replacement , string $string )

代码:

<?php
    $num="4";
    $string="this was four cats";    
    $str=ereg_replace(‘()was‘,‘\\1is‘, $string);
    $str1=str_replace(‘was‘,‘is‘,$string);
    $str2=ereg_replace(‘four‘,$num, $string);
    echo $str.‘<br>‘;
    echo $str1.‘<br>‘;
    echo $str2.‘<br>‘;    
?>

输出结果:

this is four cats
this is four cats
this was 4 cats

括号可以嵌套,此情形下以左圆括号来计算顺序。

以上是关于PHPereg_repalce( )的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数