位置: 编程技术 - 正文
推荐整理分享PHP:ereg_replace()的用法_Regex正则函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
ereg_replace — 正则表达式替换
说明 string ereg_replace ( string $pattern , string $replacement , string $string )本函数在 string 中扫描与 pattern 匹配的部分,并将其替换为 replacement。
返回替换后的字符串。(如果没有可供替换的匹配项则会返回原字符串。)
如果 pattern 包含有括号内的子串,则 replacement 可以包含形如 \digit 的子串,这些子串将被替换为数字表示的的第几个括号内的子串;\0 则包含了字符串的整个内容。最多可以用九个子串。括号可以嵌套,此情形下以左圆括号来计算顺序。
如果未在 string 中找到匹配项,则 string 将原样返回。
例如,下面的代码片断输出 "This was a test" 三次:
Example #1 ereg_replace() 例子
<?php$string="Thisisatest";echostr_replace("is","was",$string);echoereg_replace("()is","\1was",$string);echoereg_replace("(()is)","\2was",$string);?>要注意的一点是如果在 replacement 参数中使用了整数值,则可能得不到所期望的结果。这是因为 ereg_replace() 将把数字作为字符的序列值来解释并应用之。例如:
Example #2 ereg_replace() 例子
<?php/*不能产生出期望的结果*/$num=4;$string="Thisstringhasfourwords.";$string=ereg_replace('four',$num,$string);echo$string;/*Output:'Thisstringhaswords.'*//*本例工作正常*/$num='4';$string="Thisstringhasfourwords.";$string=ereg_replace('four',$num,$string);echo$string;/*Output:'Thisstringhas4words.'*/?>
Example #3 将 URL 替换为超连接
<?php$text=ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<ahref="\0">\0</a>",$text);?> Tippreg_replace() 函数使用了 Perl 兼容正则表达式语法,通常是比 ereg_replace() 更快的替代方案。
参见 ereg(),eregi(),eregi_replace(),str_replace() 和 preg_match()。
PHP:preg_replace()的用法_PCRE正则函数 preg_replace(PHP4,PHP5)preg_replace执行一个正则表达式的搜索和替换说明mixedpreg_replace(mixed$pattern,mixed$replacement,mixed$subject[,int$limit=-1[,int&$count]])搜索subject中匹配
PHP:preg_match()的用法_PCRE正则函数 preg_match(PHP4,PHP5)preg_match执行一个正则表达式匹配说明intpreg_match(string$pattern,string$subject[,array&$matches[,int$flags=0[,int$offset=0]]])搜索subject与pattern给定的正则
PHP:preg_match_all()的用法_PCRE正则函数 preg_match_all(PHP4,PHP5)preg_match_all执行一个全局正则表达式匹配说明intpreg_match_all(string$pattern,string$subject[,array&$matches[,int$flags=PREG_PATTERN_ORDER[,int$offset=0]]])搜
标签: PHP:ereg_replace()的用法_Regex正则函数
本文链接地址:https://www.jiuchutong.com/biancheng/279883.html 转载请保留说明!友情链接: 武汉网站建设