First page Back Continue Last page Overview Graphics
Simple Backtracking Control Verbs
(*ACCEPT)
- causes a pattern to be accepted at the current match point even if there is more pattern to be matched.
- think of this as being something like a “return” statement for regexes.
- 'AC'=~/A (? B | C (*ACCEPT) | D ) E/x
- will match