锟斤拷锟斤拷

Example #1 锟斤拷锟斤拷锟斤拷式锟斤拷锟斤拷

<?php
// $string 锟斤拷锟斤拷锟斤拷位锟斤拷锟揭碉拷 "abc" 锟酵凤拷锟斤拷 true锟斤拷
ereg("abc"$string);            

// $string 锟斤拷锟斤拷始位锟斤拷锟揭碉拷 "abc" 锟酵凤拷锟斤拷 true锟斤拷
ereg("^abc"$string);

// $string 末尾锟揭碉拷 "abc" 锟酵凤拷锟斤拷 true锟斤拷
ereg("abc$"$string);

// 锟酵伙拷锟斤拷锟斤拷锟斤拷锟� Netscape 2锟斤拷 3 锟斤拷 MSIE 3 锟酵凤拷锟斤拷 true锟斤拷
eregi("(ozilla.[23]|MSIE.3)"$_SERVER["HTTP_USER_AGENT"]);

// 锟斤拷锟斤拷锟秸革拷指畹ワ拷锟轿� $regs[1]锟斤拷 $regs[2]锟斤拷 $regs[3]锟斤拷
ereg("([[:alnum:]]+) ([[:alnum:]]+) ([[:alnum:]]+)"$string$regs); 

// $string 头锟斤拷锟斤拷一锟斤拷 <br /> 锟斤拷签锟斤拷
$string ereg_replace("^""<br />"$string); 

// $string 尾锟斤拷锟斤拷锟揭伙拷锟� <br /> 锟斤拷签锟斤拷
$string ereg_replace("$""<br />"$string); 

// 删锟斤拷 $string 锟斤拷幕锟斤拷蟹锟斤拷锟�
$string ereg_replace("\n"""$string);
?>