Hi all,
My artist field contains instrument abbriviatios, separated by a colon and empty space between brackets ().
Example: Scott Yancey Avett (l.vcl, b.vcl, bjo, p, a.gtr) - Timothy Seth Avett (l.vcl, b.vcl, a.gtr, e.gtpt, org, cel) - Bob Crawford (cb, e.b.gtr, l.vcl, b.vcl) - Joseph Kwon (vlc)
I want to create a field with unique abbriviations separated by | sorted A-Z:
a.gtr|b.vcl|bjo|cb|cel|e.b.gtr|e.gtpt|l.vcl|org|p|vlc|
I used the regex expression:
\((.*?)\)
wich works fine in regex checkers.
When I use in MC25:
regex([Artist], /#\((.*?)\)#/, 1)
I only get the content from the first set of ():
l.vcl, b.vcl, bjo, p, a.gtr
Could you, please help?
John