Hi everybody,
First of all sorry because it's pretty possible that this same question has been answered in other posts, but I've been able to find it.
In a 'Row filter', I'm trying to find a regex that allows me to identify the rows that contain the string "REGISTER_WEB". This string can be found in 4 different ways:
- The row only contains "REGISTER_WEB"
- The string can be found in the beginning of the field: "REGISTER_WEB"XXXXXXXXX
- The string can be found in the middle of the field: XXXXXX"REGISTER_WEB"XXXXXX
- The string can be found in the end of the field: XXXXXX"REGISTER_WEB"
Is there any regular expression that allows me to identify all the possible combinations in which this string can be found in this field?
Thanks in advance for your help!
Best regards,
Nati