I\'m looking for a regular expression which will perform the following:
INPUT: User Name (email@address.com) OUTPUT: User Name
What would b
I'm just offering another way to do this, although I would just use regex myself as this is clunky:
string output = input.Split('(')[0].TrimEnd();