Hi, I have a column with


ABC (abc)
XYZ (xyz)
EDG (edg)
..


Is there a way I can transform this column into an adjoining column that has only the values inside the brackets, so that the column looks like this:

abc
xyz
edg
...


I looked for regular expressions (regexp) help, but could not find an easy solution.

Thanks!