I'm trying to match the following strings:
PHANTOGRAM • CUT / COPY • AB$SID 3 • FITZ & THE TANTRUMS PHANTOGRAM,CUT / COPY,AB$SID 3,FITZ & THE TANTRUMS PHANTOGRAM CUT / COPY AB$SID 3 FITZ & THE TANTRUMS So, basically regex that matches anything between ( • |,| |\n).
I have tried things like (([^•\n])+) and positive lookahead, but geez I can't for the life of me put it together. Any advice? My hunch is I need a combination of positive lookahead and negative lookahead.
Last note: this is for the javascript environment.
Thanks for any help.