ZVON > References > Regular Expressions Reference

(?=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