本文介绍php常用正则匹配函数之间的区别,主要有str_replace、str_ireplace、substr_replace、 preg_replace、preg_match、preg_match_all、preg_quote、preg_split、 ereg_replace、eregi_replace、preg_replace、str_split,当然其中有几个不能使用正则表达式,但因为跟相关正则函数关系暧昧所以都放到一起比较一下,方便参考。
名称 支持正则 特点 备注
str_replace x 字符串替换函数,大小写敏感
str_ireplace x 字符串替换函数,大小写不敏感,支持数组式批量替换 感谢网友franci,提醒添加
substr_replace x 部分替换字符串函数,可以指定位置index
preg_replace y 指定匹配模式进行替换,支持子串引用 优先使用
ereg_replace y 指定匹配模式进行替换,大小写敏感,支持子串引用
eregi_replace y 指定匹配模式进行替换,大小写不敏感,支持子串引用
ereg y 指定模式全文匹配,可以用来匹配判断,或返回匹配数组
preg_match y 指定模式匹配一次退出,可以用来是否匹配判断,或使用返回的匹配数组 优先使用
preg_match_all y 指定模式全文匹配,一般用来使用返回的匹配数组 优先使用
preg_split y 指定匹配模式下正则剖分,如果能用最好还是使用explode或str_split
str_split x 指定长度剖分字符串,默认单个字符剖分成数组
explode x 可以指定单个或多个字符剖分字符串,成功则返回数组,例如12345按照34剖分则返回12和5
preg_quote - 转义正则表达式字符,意思就是为特殊字符加上反斜线,正则表达式的特殊字符包括:. * ? [ ^ ] $ ( ) { } = ! | : -
补充说明:
1、在php中有两套正则表达式函数库,功能非常相似:
一套是posix(portable operating system interface of unix )库提供的,函数以ereg_前缀命名,posix正则函数库目前已经不再推荐使用。
一套是pcre(perl compatible regular expression)库提供的,函数以preg_前缀命名,推荐大家优先使用。在pcre中,通常将模式表达式(即正则表达式)包含在两个反斜线“/”之间,如“/^w $/”样式。
2、php正则表达式作用:匹配提取、匹配替换
http://www.bkjia.com/phpjc/486147.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/486147.htmltecharticle本文介绍php常用正则匹配函数之间的区别,主要有str_replace、str_ireplace、substr_replace、 preg_replace、preg_match、preg_match_all、preg_quote、preg_spli...