ZVON
>
References
>
Regular Expressions Reference
Intro
/
Search
/
ZVON
(?<=pattern)
A zero-width positive lookbehind assertion. For example, /(?<=\t)\w+/ matches a word following a tab, without including the tab in match. Works only for fixed-width lookbehind.
Examples: