«
在一个字符串中查找另一个字符串

时间:2008-5-31    作者:Deri    分类: 分享


   <p>  <code><html><br /><head><title>正则表达式</title></head><br /><body><br /><a href="./">返回列表</a><br><br /><form action="<?echo $PHP_SELF;?>" method="post"><br />在<input type="text" name="string" value="<?echo $string;?>">中查找<input type="text" name="query" value="<?echo $query;?>"><br><br /><input type="radio" name="where" value="" <?if(!isset($where) or $where=="") echo "checked";?>>第二个字符串可以在第一个字符串的任何位置<br><br /><input type="radio" name="where" value="^" <?if(isset($where) and $where=="^") echo "checked";?>>第一个字符串以第二个字符串开始<br><br /><input type="radio" name="where" value="$" <?if(isset($where) and $where=="$") echo "checked";?>>第一个字符串以第二个字符串结束<br><br /><input type="checkbox" name="case" value="case" <?if(isset($case)) echo "checked";?>>区分大小写<br><br /><input type="submit" value="查询"><br /></form><br /><?<br />if(isset($string) and isset($query) and $string<>"" and $query<>""){<br />  if(isset($case)){<br />    $func = "ereg";<br />  }<br />  else{<br />    $func = "eregi";<br />  }<br />  switch($where){<br />    case "^":<br />      $query = "^" . $query;<br />      break;<br />    case "$":<br />      $query .= "$";<br />      break;<br />  }<br />  eval("\$found = $func(\"$query\",\"$string\");");<br />  if($found){<br />    echo "找到!";<br />  }<br />  else{<br />    echo "未找到!";<br />  }<br />}<br />?><br /></body><br /></html></code></p>