Hi all,
I was wondering if it would be possible to remove columns within a data file that contain any parenthesis that can be contained in ANY column. For example
...
John Doe (Tech Department) 09/12/2009 555-555-5555
Jane Smith 09/12/2009 555-555-5555 (Suspended)
Alfred doe 555-555-5555 (Vacation) 09/09/2011
...
So then I would like the output to look like
...
John Do 09/12/2009 555-555-5555
Jane Smith 09/12/2009 555-555-5555
Alfred doe 555-555-5555 09/09/2011
...
I was thinking of using a wildcard for the text in between the parenthesis? something like /(*)/ ?
Thanks for any help,
Tomek