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

Paste Hosted With By Wklejamy.pl