|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
兴趣可能会慢慢消亡,所以适当培养兴趣会激发自己无线的乐趣,有了乐趣,编程有啥难的。正则 在PHP中正则表达式用于庞杂字符串的处置。所撑持的正则表达式以下:
ereg()
ereg_replace()
eregi()
eregi_replace()
split()
(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页。
Example 2-4. Regular expression examples
ereg("abc",$string);
/* Returns true if "abc" is found anywhere in $string. */
ereg("^abc",$string);
/* Returns true if "abc" is found at the beginning of $string. */
ereg("abc$",$string);
/* Returns true if "abc" is found at the end of $string. */
eregi("(ozilla.[23]|MSIE.3)",$HTTP_USER_AGENT);
/* Returns true if client browser is Netscape 2, 3 or MSIE 3. */
ereg("([[:alnum:]]+) ([[:alnum:]]+) ([[:alnum:]]+)",$string,$regs);
/* Places three space separated words into $regs[1], $regs[2] and $regs[3]. */
ereg_replace("^","
",$string);
/* Put a
tag at the beginning of $string. */
ereg_replace("$","
",$string);
/* Put a
tag at the end of $string. */
ereg_replace("\n","",$string);
/* Get rid of any carriage return characters in $string. */
php manual(PHP手册)肯定是要从网上下载一个的,它很权威,也很全面,我自己认为它是一本很好的参考书,但是不适合新手当教材使用。 |
|