Home php教程 php手册 PHP正则表达式字符集的使用浅析

PHP正则表达式字符集的使用浅析

Jun 13, 2016 am 11:03 AM
php use Can Woolen cloth character set develop us what is regular of expression

PHP正则表达式字符集是什么呢?PHP正则表达式字符集的使用可以对我们的开发使用有什么帮助呢?PHP正则表达式字符集的形式以及使用规则是什么呢?我们来逐一介绍,

PHP正则表达式字符集的相关概念:

在INTERNET的程序中,正规表达式通常用来验证用户的输入。当用户提交一个FORM以后,要判断输入的电话号码、地址、EMAIL地址、信用卡号码等是否有效,用普通的基于字面的字符是不够的。所以要用一种更自由的描述我们要的模式的办法,它就是字符簇。要建立一个表示所有元音字符的字符簇,就把所有的元音字符放在一个方括号里。

PHP正则表达式字符集形式:

<ol class="dp-c"><li class="alt"><span><span>[AaEeIiOoUu]  </span></span></li></ol>
Copy after login

这个模式与任何元音字符匹配,但只能表示一个字符。用连字号可以表示一个字符的范围,如:

<ol class="dp-c">
<li class="alt"><span><span>[a-z] </span><span class="comment">//匹配所有的小写字母  </span><span> </span></span></li>
<li>
<span>[A-Z] </span><span class="comment">//匹配所有的大写字母  </span><span> </span>
</li>
<li class="alt">
<span>[a-zA-Z] </span><span class="comment">//匹配所有的字母  </span><span> </span>
</li>
<li>
<span>[0-9] </span><span class="comment">//匹配所有的数字  </span><span> </span>
</li>
<li class="alt">
<span>[0-9.-] </span><span class="comment">//匹配所有的数字,句号和减号  </span><span> </span>
</li>
<li>
<span>[ frtn] </span><span class="comment">//匹配所有的白字符 </span><span> </span>
</li>
</ol>
Copy after login

同样的,这些也只表示一个字符,这是一个非常重要的。如果要匹配一个由一个小写字母和一位数字组成的字符串,比如"z2"、"t6"或"g7",但不是"ab2"、"r2d3" 或"b52"的话,用这个模式:

<ol class="dp-c"><li class="alt"><span><span>^[a-z][0-9]$  </span></span></li></ol>
Copy after login

尽管[a-z]代表26个字母的范围,但在这里它只能与第一个字符是小写字母的字符串匹配。

PHP正则表达式字符集的使用:

前面曾经提到^表示字符串的开头,但它还有另外一个含义。当在一组方括号里使用^是,它表示“非”或“排除”的意思,常常用来剔除某个字符。还用前面的例子,我们要求第一个字符不能是数字:

<ol class="dp-c"><li class="alt"><span><span>^[^0-9][0-9]$  </span></span></li></ol>
Copy after login

这个模式与"&5"、"g7"及"-2"是匹配的,但与"12"、"66"是不匹配的。下面是几个排除特定字符的例子:

<ol class="dp-c">
<li class="alt"><span><span>[^a-z] </span><span class="comment">//除了小写字母以外的所有字符  </span><span> </span></span></li>
<li>
<span>[^/^] </span><span class="comment">//除了"/"和"^"字符之外的所有字符  </span><span> </span>
</li>
<li class="alt">
<span>[^</span><span class="string">"'] //除了双引号("</span><span>)和单引号(')之外的所有字符  </span>
</li>
</ol>
Copy after login

特殊字符"." (点,句号)在正规表达式中用来表示除了“新行”之外的所有字符。所以模式"^.5$"与任何两个字符的、以数字5结尾和以其他非“新行”字符开头的字符串匹配。模式"."可以匹配任何字符串,除了空串和只包括一个“新行”的字符串。

PHP正则表达式字符集的相关内容就向你介绍到这里,希望那个对你了解和使用PHP正则表达式字符集有所帮助。


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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles