[Solved] How to Parse using Regex in C# [closed]


Maybe this will help:

   string input =@"""POST /trusted HTTP/1.1"" ""000.00.00.0"" 200 9 ""42"" 123456 A3rTW6ecEIcBACvMEbAACAJA"; 
   var r = 
        Regex.Matches(
            input,
            "((\"[^\"]+\")|([^\" ]+))"
        );
    foreach (var s in r)
    {
      System.Console.WriteLine(s);
    }           

    System.Console.ReadLine();

0

solved How to Parse using Regex in C# [closed]