ZVON
>
References
>
Regular Expressions Reference
Intro
/
Search
/
ZVON
(?=pattern)
A zero-width positive lookahead assertion. For example, /\w+(?=\t)/ matches a word followed by a tab, without including the tab in match.
Examples:
01
02