Haven't done much with RegEx lately, so it could be that I'm just being forgetful but I would like to achieve the following:
a - one possible value for the string I search for
b - another one
c - seqence of characters I want to return
d - another possible variation of c
Normally I would do it like
(a|b)(c|d) and return the second one. However Alteryx does not allow us to have multiple matches.
a|b(c|d) looks like it's either a or b(c|d) which would be incorrect
Also how do I make conditional checks, normally I would do:
(a|b)(?c) to get a, ac, b and bc