Reputation: 41
I have a table with the underlying dummy data and would like to get a TRUE only when the text has the word "T-Rex" without the word Big in front.
Ideal result:
T-Rex TRUE Big T-Rex FALSE Monkey, T-Rex TRUE
Thanks in advance!
Upvotes: 1
Views: 35
Reputation: 4648
The task can be achieved using a multi-step workaround.
Unfortunately you cannot perform lookaheads and lookbehinds according to the official documentation. The reason is discussed here.
Upvotes: 1