Php/docs/parle.regex.grouping
来自菜鸟教程
Grouping
Sequence | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
(...) | Group a regular expression to override default operator precedence. | ||||||||||||
(?r-s:pattern) |
Apply option r and omit option s while interpreting pattern. Options may be zero or more of the characters i, s, or x.
These options can be applied globally at the rules level by passing a combination of the bit flags to the lexer. | ||||||||||||
(?# comment ) | Omit everything within (). The first ) character encountered ends the pattern. It is not possible for the comment to contain a ) character. The comment may span lines. |