PHP正则中的擒获组与非捕获组
PHP正则中的捕获组与非捕获组
今天遇到一个正则匹配的问题,忽然翻到有捕获组的概念,手册上也是一略而过,百度时无意翻到C#和Java中有对正则捕获组的特殊用法,搜索关键词有PHP时竟然没有相关内容,自己试了一下,发现在PHP中也是可行的,于是总结一下,分享的同时也希望有大神和细心的学习者找到我理解中出现的问题。
什么是捕获组
我们先看一下PHP的正则匹配函数
int preg_match ( string $pattern , string $subject [, array &$matches [, int $flags = 0 [, int $offset = 0 ]]] )
前面两项是我们常用的,$pattern是正则匹配模式,$string是要匹配的字符串。
array &$match,它是一个数组,&表示匹配出来的结果会被写入$match中。
int $flags 如果传递了这个标记, 对于每一个出现的匹配返回时会附加字符串偏移量(相对于目标字符串的)。
int $offset 用于指定从目标字符串的某个未知开始搜索(单位是字节)。
我们主要看一下$match的值里会有什么:
<span style="color: #800080;">$mode</span> = '/a=(\d+)b=(\d+)c=(\d+)/'<span style="color: #000000;">;</span><span style="color: #800080;">$str</span>='**a=4b=98c=56**'<span style="color: #000000;">;</span><span style="color: #800080;">$res</span>=<span style="color: #008080;">preg_match</span>(<span style="color: #800080;">$mode</span>,<span style="color: #800080;">$str</span>,<span style="color: #800080;">$match</span><span style="color: #000000;">);</span><span style="color: #008080;">var_dump</span>(<span style="color: #800080;">$match</span>);
结果如下:
<span style="color: #0000ff;">array</span> (size=4<span style="color: #000000;">) </span>0 => <span style="color: #0000ff;">string</span> 'a=4b=98c=56' (length=11<span style="color: #000000;">) </span>1 => <span style="color: #0000ff;">string</span> '4' (length=1<span style="color: #000000;">) </span>2 => <span style="color: #0000ff;">string</span> '98' (length=2<span style="color: #000000;">) </span>3 => <span style="color: #0000ff;">string</span> '56' (length=2)
现在我们知道了什么是捕获组,捕获组是正则表达示中以()括起来的部分,每一对()是一个捕获组。
PHP会为它编号,从1开始。至于为什么会从1开始,那是因为PHP把匹配到的完整字符串编号为0。
如果有多个括号或嵌套括号,按左边括号出现的顺序来进行编号,如图:
按图中的匹配模式匹配时,捕获组的123号分别是红绿蓝。
捕获组的忽略与命名
我们还可以阻止PHP为匹配组的编号:在匹配组中模式前加 ?:
$mode = '/a=(\d+)b=(?:\d+)c=(\d+)/';
这样,匹配结果就会变成:
<span style="color: #0000ff;">array</span> (size=3<span style="color: #000000;">) </span>0 => <span style="color: #0000ff;">string</span> 'a=4b=98c=56' (length=11<span style="color: #000000;">) </span>1 => <span style="color: #0000ff;">string</span> '4' (length=1<span style="color: #000000;">) </span>2 => <span style="color: #0000ff;">string</span> '56' (length=2)
当然,我们也可以在括号的内部为它给它独特的名字。
命名子组可以接受(?
), (?'name') 以及(?P )语法. 之前版本仅接受(?P )语法.
例如:$mode = '/a=(\d+)b=(?P
使用时结果为:
<span style="color: #0000ff;">array</span> (size=5<span style="color: #000000;">) </span>0 => <span style="color: #0000ff;">string</span> 'a=4b=98c=56' (length=11<span style="color: #000000;">) </span>1 => <span style="color: #0000ff;">string</span> '4' (length=1<span style="color: #000000;">) </span>'sec' => <span style="color: #0000ff;">string</span> '98' (length=2<span style="color: #000000;">) </span>2 => <span style="color: #0000ff;">string</span> '98' (length=2<span style="color: #000000;">) </span>3 => <span style="color: #0000ff;">string</span> '56' (length=2)
在保留索引数组的同时,加上一个关联项,key值为捕获组名。
捕获组的反向引用
我们在用preg_replace()函数进行正则替换时,我们还可以使用 \n 或 $n 来引用第n个捕获组.
<span style="color: #800080;">$mode</span> = '/a=(\d+)b=(\d+)c=(\d+)/'<span style="color: #000000;">;</span><span style="color: #800080;">$str</span>='**a=4b=98c=56**'<span style="color: #000000;">;</span><span style="color: #800080;">$rp</span>='\1/$2/\3/'<span style="color: #000000;">;</span><span style="color: #0000ff;">echo</span> <span style="color: #008080;">preg_replace</span>(<span style="color: #800080;">$mode</span>,<span style="color: #800080;">$rp</span>,<span style="color: #800080;">$str</span>);<span style="color: #008000;">//</span><span style="color: #008000;">**4/98/56/**</span>
\1表示捕获组1(4),$2为捕获组2(98),\3为捕获组3(56)。
非捕获组的用法:
为什么称为非捕获组呢?那是因为它们有捕获组的特性,在匹配模式的()中,但是匹配时,PHP不会为它们编组,它们只会影响匹配结果,并不作为结果输出。
/d(?=xxx) 匹配"后面是xxx的一个数字"。
注意格式:只能放在匹配模式字符串之后!
例如:
<span style="color: #800080;">$pattern</span>='/\d(?=abc)/'<span style="color: #000000;">;</span><span style="color: #800080;">$str</span>="ab36abc8eg"<span style="color: #000000;">;</span><span style="color: #800080;">$res</span>=<span style="color: #008080;">preg_match</span>(<span style="color: #800080;">$pattern</span>,<span style="color: #800080;">$str</span>,<span style="color: #800080;">$match</span><span style="color: #000000;">);</span><span style="color: #008080;">var_dump</span>(<span style="color: #800080;">$match</span>);<span style="color: #008000;">//</span><span style="color: #008000;">6</span>
匹配的6,因为只有它作为一个数字,后面还有abc。
(?/d 匹配"前面是xxx的一个数字"
注意格式:只能放在匹配模式字符串之前!
例如:
<span style="color: #800080;">$pattern</span>='/(?;<span style="color: #800080;">$str</span>="ab36abc8eg"<span style="color: #000000;">;</span><span style="color: #800080;">$res</span>=<span style="color: #008080;">preg_match</span>(<span style="color: #800080;">$pattern</span>,<span style="color: #800080;">$str</span>,<span style="color: #800080;">$match</span><span style="color: #000000;">);</span><span style="color: #008080;">var_dump</span>(<span style="color: #800080;">$match</span>);<span style="color: #008000;">//8</span><span style="color: #008000;"><br></span>
匹配的8,因为只有它作为一个数字,后面还有abc。
与(?=xxx) (?!”
它表示前面/后面不是xxx的字符串,这里就不再举例了。
如果您觉得本博文对您有帮助,您可以推荐或关注我,如果您有什么问题,可以在下方留言讨论,谢谢。

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible

The activation process on Windows sometimes takes a sudden turn to display an error message containing this error code 0xc004f069. Although the activation process is online, some older systems running Windows Server may experience this issue. Go through these initial checks, and if they don't help you activate your system, jump to the main solution to resolve the issue. Workaround – close the error message and activation window. Then restart the computer. Retry the Windows activation process from scratch again. Fix 1 – Activate from Terminal Activate Windows Server Edition system from cmd terminal. Stage – 1 Check Windows Server Version You have to check which type of W you are using
