Hello, i'm new to regex and been reading a lot of forum posts trying to figure out what i need to do with no luck. I'm sure this is so simple so apologies in advance!
I want to extract all words after several different identifiers in the data, so example data would be something like:
Supplier Shop XY Green Cat
Customer XY Blue Dog
Supplier AB Pink Snake
Wholesaler GH Black Frog
How can i use regex to parse all the text after XY, AB,GH ? I can do this individually by using XY +(.*) but how can i write it so that i can search on these multiple values?