I'm trying to use a lookahead operator (?=) in match_regex() to determine if a string has any one of a set of characters in any place but it doesn't appear to be matching. As a workaround I am using IF match(.*a*.) OR match(.*b.*) OR ...
Are the lookahead ?= and lookbehind ?<= operators supported?