ZVON > References > Regular Expressions Reference

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