Remove everything until character

Hi everyone,

I could not find anything in the forum to help me.

What I have:
[PublisherXYZ (Author)], Title

What I would want:
Author, Title


So basically a remove pattern for everything before "(". Removing the other brackets is something even I can do ^^.

Thanks in advance!
Replace: [^\(]*\(([^\)]*)\)\]
with: \1
Use regular expressions
Reply to #2:
Thanks David!