Would it be possible to change
Hello, this is Mike (example)
to
Hello, this is Mike
using JavaScript with
var str = "Hello, this is Mike (example)"; alert(str.replace(/\s*\(.*?\)\s*/g, ''));
That'll also replace excess whitespace before and after the parentheses.