欢迎光临
我们一直在努力

正则表达式例子:在一个字符串中查找另一个字符串-PHP教程,PHP应用

建站超值云服务器,限时71元/月

<html>
<head><title>正则表达式</title></head>
<body>
<a href="./">返回列表</a><br>
<form action="<?echo $php_self;?>" method="post">
在<input type="text" name="string" value="<?echo $string;?>">中查找<input type="text" name="query" value="<?echo $query;?>"><br>
<input type="radio" name="where" value="" <?if(!isset($where) or $where=="") echo "checked";?>>第二个字符串可以在第一个字符串的任何位置<br>
<input type="radio" name="where" value="^" <?if(isset($where) and $where=="^") echo "checked";?>>第一个字符串以第二个字符串开始<br>
<input type="radio" name="where" value="$" <?if(isset($where) and $where=="$") echo "checked";?>>第一个字符串以第二个字符串结束<br>
<input type="checkbox" name="case" value="case" <?if(isset($case)) echo "checked";?>>区分大小写<br>
<input type="submit" value="查询">
</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>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 正则表达式例子:在一个字符串中查找另一个字符串-PHP教程,PHP应用
分享到: 更多 (0)