欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP正则表达式函数学习小结_PHP教程

程序员文章站 2022-05-20 21:09:57
...
PHP正则表达式函数都有那些呢?那么PHP正则表达式函数具体的是代表什么呢?具体的用法又是什么呢?让我们一一向你介绍。PHP正则表达式主要用于复杂字符串的处理。其主要的PHP正则表达式函数如下:

◆ereg()

◆ereg_replace()

◆eregi()

◆eregi_replace()

◆split()

PHP正则表达式函数用法归纳:

(1)ereg,eregi

这是正规表达式匹配函数,前者是大小写有关匹配,后者则是无关的.

用法:

ereg(正规表达式,字符串,[匹配部分数组名]); PHP3.0中的正规表达式大体类似于grep中用的.

(2)ereg_replace,eregi_replace

这些是替换函数.

用法:

ereg_replace(正规表达式,替换串,原字符串);

字符串处理函数中有一个strtr,是"翻译"函数,类似于Perl中的tr/.../.../,

用法:

strtr(字符串,"从","到");

例如:

strtr("aaabb","ab","cd")返回"cccdd".

(3)split

与explode函数有些类似,但这次可以在匹配某正规表达式的地方分割字符串.

用法:

split(正规表达式,字符串,[取出前多少项]);

这些函数都使用正则字符串做为第一个参数。PHP使用Posix 1003.2标准所定义的扩展正则字符串。要查考Posix正则表达式的完整描述请看PHP软件包中regex目录下的man页。

PHP正则表达式函数应用实例:

  1. ereg("abc",$string);
  2. /* Returns true if "abc" is
  3. found anywhere in $string. */
  4. ereg("^abc",$string);
  5. /* Returns true if "abc" is
  6. found at the beginning of $string. */
  7. ereg("abc$",$string);
  8. /* Returns true if "abc" is
  9. found at the end of $string. */
  10. eregi("(ozilla.[23]|MSIE.3)",$HTTP_USER_AGENT);
  11. /* Returns true if client browser
  12. is Netscape 2, 3 or MSIE 3. */
  13. ereg("([[:alnum:]]+) ([[:alnum:]]+)
  14. ([[:alnum:]]+)",$string,$regs);
  15. /* Places three space separated words
  16. into $regs[1], $regs[2] and $regs[3]. */
  17. ereg_replace("^","",$string);
  18. /* Put a tag at the beginning of $string. */
  19. ereg_replace("$","",$string);
  20. /* Put a tag at the end of $string. */
  21. ereg_replace(" ","",$string);
  22. /* Get rid of any carriage
  23. return characters in $string. */

PHP正则表达式函数的相关内容就向你介绍到这里,希望对你了解和学习PHP正则表达式函数有所帮助。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/446590.htmlTechArticlePHP正则表达式函数都有那些呢?那么PHP正则表达式函数具体的是代表什么呢?具体的用法又是什么呢?让我们一一向你介绍。PHP正则表达式...