Home  >  Article  >  Web Front-end  >  Detailed explanation of the use of regular non-capturing groups and capturing groups

Detailed explanation of the use of regular non-capturing groups and capturing groups

php中世界最好的语言
php中世界最好的语言Original
2018-03-29 16:08:222147browse

这次给大家带来正则的非捕获组与捕获组使用详解,使用正则的非捕获组与捕获组注意事项有哪些,下面就是实战案例,一起来看一下。

在一篇正则表达式技术文档中看到下面内容:

“外需要说明的一点是,除(Expression)和(?Expression)语法外,其它的(?...)语法都不是捕获组。”
这个内容是好理解的,但疑惑的是,该文章作者在另一篇相关正则的技术文章中,其中一个这样的实例,着实让我迷惑了一番:

文本内容

<td>a</td><td>b</td>

正则表达式

(?is)<td>(?:(?!</td>).)*</td>

注意上面正则表达式的代码,他对“(?!).”进行“强制非捕获组”,我在短信中告诉他,可以这样写:(?is)((?!).)*
两天仍未见他回复,于是在回过头来研究一下他代码,起初我将重点放在“(?!)”这个括号算不算捕获组。但是在看一次上面技术文章的代码我才反应过来。他不是针对(?!)强制为非捕获组,而是将(?!).强制为非捕获组,于是我就做了下面的测试:

文本内容

<td>a</td><td>a</td>

正则表达式

<td>((?!</td>).)*</td><td>(\1)*</td>

匹配结果

<td>a</td><td>a</td>

这就证明,如果不对“(?!).”进行强制为非捕获组,它是会捕获的,而这个捕获,我根本不需要它。
下面,我在测试一下,除了(Expression)和(?Expression)语法外,其它的,如环视,它算不算捕获组。

文本内容

<td>a</td><td>a</td>

正则表达式

<td>((?!</td>).)*</td><td>(\2.)*</td>

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

正则表达式怎么匹配图片地址与img标签

使用正则验证用户输入的银行卡号(附代码)

用正则表达式验证判断密码的强弱程度并且进行提示

The above is the detailed content of Detailed explanation of the use of regular non-capturing groups and capturing groups. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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