|
DEELX Basic Pattern Syntax: Backward Reference
Return: Content | Prev: Named group | Next: Extended Syntax
Backward Reference \nnn
Refer to what a certain group captured. The text at current position must be the same as what a certain group captured.
Remarks
Backward reference format supported by DEELX:
Reference |
Description |
\nnn |
Backward refer to the group with that number |
\g<name> |
Backward refer to named group |
\k<name> |
\k'name' |
If the referred group has not captured, the backward reference will match fail.
DEELX uses 3 digital characters at most in backward reference. If you want to express '\1' and a common character '2', you should use '\0012'. If you use '\12' in your pattern in DEELX, it means backward refer to the 12th group.
DEELX will NOT regard \nnn as an octal number, refer to Simple escaped characters for more details.
|
|
|