When developing websites or applications, we often need to process text. If it is just simple string operations, such as search and replacement, interception, etc., you may also be able to use some built-in functions to complete it. But if you need to perform more complex pattern matching or data extraction, then you need to use regular expressions.
Regular expressions are a powerful tool for processing text data. It helps us match and process strings through some specific symbols and rules. In PHP, regular expressions are built-in, and matching can be done using the PCRE library (Perl Compatible Regular Expressions).
In this article, we will introduce the basic syntax and usage of PHP regular expressions to help beginners get started quickly and master this powerful tool.
- Basic syntax
Regular expressions consist of some specific characters and rules that describe the pattern to be matched. In PHP, regular expressions need to be wrapped with slashes (/). For example:
$pattern = "/hello world/i";
This regular expression is used to match "hello world" in a string and ignores case.
Among them, "/" represents the beginning and end of the regular expression, and the middle is the pattern to be matched. In this example, we used the "i" modifier to ignore case. Modifiers are outside the slash and are used to modify the matching behavior of the regular expression. Common modifiers are:
Modifier | Description |
---|---|
i | Ignore case |
m | Treat string as multiple lines |
s | Match the dot (.) to all characters, including newlines |
x | Ignore spaces and comments in regular expressions |
- Character Set
In regular expressions, we can use character sets to match a specific set of characters. Character sets need to be enclosed in square brackets ([]). For example:
$pattern = "/[aeiou]/i";
This regular expression is used to match any vowel in the string, ignoring case.
Inside square brackets, we list the characters to match, separated by commas (,). A dash (-) can be used to indicate a range. For example:
$pattern = "/[a-z]/i";
This regular expression is used to match any lowercase letter, ignoring uppercase and lowercase letters.
Some special metacharacters can also be used within square brackets to represent a specific set of characters. For example:
MetaCharacter | Description |
---|---|
d | Matches any number |
D | Matches any non-number |
w | Matches any letter , numbers or underscores |
W | matches any non-letters, numbers or underscores |
s | Match any whitespace character (space, tab, newline, etc.) |
S | Match any non-whitespace character |
- Quantifier
In regular expressions, we can use quantifiers to indicate the number of matches for a certain element. Common quantifiers are:
Quantifier | Description |
---|
- | Match 0 or more
- | Match 1 or more
? | Match 0 or 1
{n} | Match exactly n
{n,} | Match At least n
{n,m} | Match n to m
For example:
$pattern = "/a+/i";
This regular expression is used to match one or more in the string The letter "A", ignoring case.
$pattern = "/d{3,}/";
This regular expression is used to match a string of at least 3 digits.
- Boundary matching
In regular expressions, boundary matching is used to limit the scope of matching. Common boundary matches are:
Match symbol | Description |
---|---|
^ | Match the beginning of the string |
$ | Match the end of the string |
Match word boundaries | |
B | Match positions other than word boundaries |
例如:
$pattern = "/^hello/i";
这个正则表达式用于匹配以“hello”开头的字符串,忽略大小写。
$pattern = "/world$/i";
这个正则表达式用于匹配以“world”结尾的字符串,忽略大小写。
$pattern = "/hello/i";
这个正则表达式用于匹配单词“hello”,忽略大小写。
- 捕获分组
在正则表达式中,我们可以使用捕获分组来提取匹配的内容。捕获分组需要使用圆括号(())将要捕获的内容包裹起来。例如:
$pattern = "/(d{3})-(d{4})/"; $string = "my phone number is 123-4567"; if(preg_match($pattern, $string, $matches)){ echo $matches[0]; // 123-4567 echo $matches[1]; // 123 echo $matches[2]; // 4567 }
这个正则表达式用于匹配“123-4567”这种形式的电话号码,并且将前三个数字和后四个数字分别保存到$matches数组中。
- 贪婪匹配和非贪婪匹配
在正则表达式中,默认情况下会进行贪婪匹配。也就是说,它会尽可能多地匹配字符。例如:
$pattern = "/.*hello/"; $string = "my name is hello, nice to meet you"; if(preg_match($pattern, $string, $matches)){ echo $matches[0]; // my name is hello }
这个正则表达式用于匹配字符串中的“hello”之前的所有字符。
如果我们想进行非贪婪匹配,也就是尽可能少地匹配字符,可以在量词后面添加一个问号(?)来实现。例如:
$pattern = "/.*?hello/"; $string = "my name is hello, nice to meet you"; if(preg_match($pattern, $string, $matches)){ echo $matches[0]; // my name is }
这个正则表达式也用于匹配字符串中的“hello”之前的所有字符,但是它只匹配到了“my name is”。
- 其他函数
除了preg_match()函数之外,PHP中还提供了其他一些正则表达式相关的函数,例如:
函数 | 描述 |
---|---|
preg_match_all() | 用于匹配所有符合正则表达式的结果 |
preg_replace() | 用于替换符合正则表达式的字符串 |
preg_split() | 用于按照正则表达式将字符串分割成数组 |
例如:
$pattern = "/d+/"; $string = "I have 123 apples and 456 bananas"; $result = preg_match_all($pattern, $string, $matches); print_r($matches); $result = preg_replace($pattern, "***", $string); echo $result; $result = preg_split($pattern, $string); print_r($result);
这段代码分别演示了匹配所有数字、替换所有数字、以数字为分隔符将字符串分割成数组的操作。
总结
本文介绍了PHP正则表达式的基本语法和用法,包括字符集、量词、边界匹配、捕获分组、贪婪匹配和非贪婪匹配等内容。正则表达式是一种非常强大的工具,掌握它可以让我们在处理文本时事半功倍。希望本文能够帮助读者快速入门并掌握PHP正则表达式的基本用法。
The above is the detailed content of PHP regular expression introductory tutorial. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
