Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 122 Bytes

tip75.md

File metadata and controls

8 lines (6 loc) · 122 Bytes

75. Use Parentheses to Capture Submatches

An example:

/\v<(\w+)\_s+\1>

\1 will reuse the rule in (\w+).