首页 > php教程 > php手册 > 正文

一种更符合自然语意的PHP正则表达式

php中文网
发布: 2016-06-06 20:10:21
原创
1465人浏览过

在编程的过程中,尤其是文本的处理,我们很多时候都需要正则表达式,比如,验证用户输入的Email是否格式正确,电话号码是否符合规范,或者其他的自定义规则。对新手来说,熟记正则表达式的规则比较困难,那么有没有一种更符合自然语义的正则表达式呢,本文会

在编程的过程中,尤其是文本的处理,我们很多时候都需要正则表达式,比如,验证用户输入的email是否格式正确,电话号码是否符合规范,或者其他的自定义规则。对新手来说,熟记正则表达式的规则比较困难,那么有没有一种更符合自然语义的正则表达式呢,本文会给你答案。

verbalexp

Most newbie (and some seasoned) programmers have difficultly constructing Regular Expressions. Many a times one needs to create a Regexp quickly to test a a particular piece of code. However, not being comfortable withe Regexps can be a problem.?VerbalExpressions?is a PHP library that enables you to construct regular expressions using natural language like constructs. Think of it like a DSL for building Regexps.
verbalexpressions 已经实现了多个语言版本的库,可以从这里得到。

Below is a sample PHP code that constructs a regular expression which tests whether a given string is a valid url.

如下示例用来测试给定的一个string是否是有效的url地址。

<?php
include_once('VerbalExpressions.php');
$regex = new VerEx;
$regex  ->startOfLine()
        ->then("http")
        ->maybe("s")
        ->then("://")
        ->maybe("www.")
        ->anythingBut(" ")
        ->endOfLine();
if($regex->test("http://www.codediesel.com"))
    echo "valid url";
else
    echo "invalid url";
?>
登录后复制

The main part of the code the DSL like interface that helps you build a Regexp.

立即学习PHP免费学习笔记(深入)”;

$regex  ->startOfLine()
        ->then("http")
        ->maybe("s")
        ->then("://")
        ->maybe("www.")
        ->anythingBut(" ")
        ->endOfLine();
登录后复制

If you want to see what regular expression the code has built, we can use the?getRegex function of the class.

getRegex();
登录后复制

This will print the Regexp given below.

打印输出正则表达式。

AppStruct
AppStruct

无代码应用开发平台

AppStruct 132
查看详情 AppStruct
/^(http)(s)?(\:\/\/)(www\.)?([^ ]*)$/m
登录后复制

We can now use the above Regexp in our code to accomplish the same thing as above.

$myRegexp = '/^(http)(s)?(\:\/\/)(www\.)?([^ ]*)$/m';
if (preg_match($myRegexp, 'http://www.codediesel.com')) {
    echo 'valid url';
} else {
    echo 'invalud url';
}
登录后复制

We can also use the?$regex?object given in the above example directly in our code where the particular Regexp is required.

可以使用函数 getRegex 获取正则表达式规则,或者直接可以用 $regex 对象,库内部已经实现了转换。

内部的转换函数:

/**
* Object to string
*
* PHP Magic method to return a string representation of the object.
*
* @access public
* @return string
*/
????public function __toString()
????{
????????return $this->getRegex();
????}
登录后复制
include_once('VerbalExpressions.php');
$regex = new VerEx;
$regex  ->startOfLine()
        ->then("http")
        ->maybe("s")
        ->then("://")
        ->maybe("www.")
        ->anythingBut(" ")
        ->endOfLine();
if (preg_match($regex, 'http://www.codediesel.com')) {
    echo 'valid url';
} else {
    echo 'invalud url';
}
登录后复制

The PHP version of VerbalExpressions is a port of the original JavaScript version,JSVerbalExpressions. Additional modifiers that will help you build regular expressions can be found?here.

文章节选:constructing-hard-regular-expressions-with-verbalexpressions

The post 一种更符合自然语意的PHP正则表达式 appeared first on 润物无声.

相关标签:
php
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号