fork download
  1. using System;
  2. using System.Linq;
  3. using System.Text.RegularExpressions;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. var lineOfKeys = "SiteElements[10].TempateElementId,SiteElements[10].TemplateElementValue,SiteElements[11].TempateElementId,SiteElements[11].TemplateElementValue";
  10. var uniqueSiteElementKeys3 = Regex.Matches(lineOfKeys, @"\bSiteElements\[[0-9]+\]")
  11. .Cast<Match>()
  12. .Select(match => match.Value)
  13. .Distinct()
  14. .ToList();
  15.  
  16. foreach (var item in uniqueSiteElementKeys3)
  17. Console.WriteLine(item);
  18. }
  19. }
Success #stdin #stdout 0.08s 34152KB
stdin
Standard input is empty
stdout
SiteElements[10]
SiteElements[11]