正则表达式例子:在一个字符串中查找另一个字符串

  • 作者:未知 来源:未知 添加时间:2006年7月2日 字体:

  • <html>

    <head><title>正则表达式</title></head>

    <body>

    <a href="./">返回列表</a>


    <form action="<?echo $PHP_SELF;?>" method="post">

    在<input type="text" name="string" &#118alue="<?echo $string;?>">中查找<input type="text" name="query" &#118alue="<?echo $query;?>">


    <input type="radio" name="where" &#118alue="" <?if(!isset($where) or $where=="") echo "checked";?>>第二个字符串可以在第一个字符串的任何位置


    <input type="radio" name="where" &#118alue="^" <?if(isset($where) and $where=="^") echo "checked";?>>第一个字符串以第二个字符串开始


    <input type="radio" name="where" &#118alue="$" <?if(isset($where) and $where=="$") echo "checked";?>>第一个字符串以第二个字符串结束


    <input type="checkbox" name="case" &#118alue="case" <?if(isset($case)) echo "checked";?>>区分大小写


    <input type="submit" &#118alue="查询">

    </form>

    <?

    if(isset($string) and isset($query) and $string<>"" and $query<>""){

    if(isset($case)){

    $func = "ereg";

    }

    else{

    $func = "eregi";

    }

    switch($where){

    case "^":

    $query = "^" . $query;

    break;

    case "$":

    $query .= "$";

    break;

    }

    eval("\$found = $func(\"$query\",\"$string\");");

    if($found){

    echo "找到!";

    }

    else{

    echo "未找到!";

    }

    }

    ?>

    </body>

    </html>

  • 上一篇:正则表达式例子:将MM/DD/YYYY格式的日期转换为YYYY-MM-DD格式
  • 下一篇:正则表达式例子:获得某个网页上的所有超裢接
  • 最后更新时间:2024年12月22日
  • 返回页面顶端
ppdesk