private string ExtractImportantInfo(string description) { Regex regex = new Regex(@"\((.*?)\)|\((.*)"); Match match = regex.Match(description); return match.Success ? match.Groups[1].Value : ""; }