in reply to Re: A regex that only matches at offset that are multiples of a given N?
in thread A regex that only matches at offset that are multiples of a given N?
fred (? (?{ pos % 4 != 0 }) (?!) ) (....)
What does this construct do:
(?stuff)
I can't find anything about that in perlre.
Edit: Ah, the boolean test finally clued me in:
(?(condition)yes-pattern)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: A regex that only matches at offset that are multiples of a given N?
by smls (Friar) on Feb 15, 2013 at 12:27 UTC |