I would like to search a log file for a string enclosed in "()" then
I would like to replace all ";" in the string with "," but only the string
within the "()". The ";" outside of the "()" should be left alone.
Example:
Before:
Bla bla bla; bla bla (foo; bar); bla bla
After:
Bla bla bla; bla bla (foo, bar); bla bla
Is there a way to do this?