Home > php教程 > php手册 > body text

php入门学习知识点四 PHP正则表达式基本应用_php入门_脚本之家

WBOY
Release: 2016-06-06 20:37:56
Original
1041 people have browsed it

php入门学习知识点四 PHP正则表达式基本应用,正则也是php中常用的,大家一定要掌握下。不会的可以到脚本之家首页查看正则基础教材。

代码如下:
//正则表达 式
// ereg区分大小写
if(ereg("([A-Z]{3,})", "AAA")){
echo "大写能匹配!
";
}else{
echo "no";
}
if(ereg("([A-Z]{3,})", "aaa")){
echo "yes";
}else{
echo "小写不能匹配!
";
}
// eregi不区分大小写
if(eregi("([A-Z]{3,})","Aaaa")){
echo "大小写都可以匹配!";
}
//返回匹配的值
if(ereg("^(0[0-9]{2,3})-([0-9]{7,8})","0592-5337138",$regs)){
echo "返回值0下标为原串$regs[0]
";
echo "返回区号(即第一个匹配串)".$regs[1]."
";
echo("返回电话号码(即第二个匹配串)$regs[2]
");
}
?>


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template