I’m writing this regex in Pipeline Builder: (dba|o/a|d\.b\.a\.|oa|dba:)
It should to replace any of these strings with empty strings:
dba
o/a
d.b.a.
oa
dba:
I want to make it non-case-sensitive - have tried a few variations like this: (dba|o\/a|d\.b\.a\.|oa|dba:)/i (suggested by ChatGPT)
and this: (?i)(dba|o/a|d\.b\.a\.|oa|dba:) (suggested by AIP Assist)
neither seem to work - anyone know how to do this?
The ?i should make it non case sensitive. Do you have an example input where this doesn’t work and what you’re getting instead? I pasted in the regex suggested by AIP Assist and it looked like it worked
Are you always clicking “Apply” after making your change? I wasn’t able to reproduce that behavior in my pipeline but if you have a repro please share!
It sounds like the regex works but let us know if you have further questions