fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Soft
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. var phrase = "\"ogin\":\"RED\",\"foto_i\",\"ogin\":\"GREEN\",\"foto_i\",\"ogin\":\"BLUE\",\"foto_i\"" +
  13. ",\"foto_i\",\"ogin\":\"BLUE\",\"foto_i\"";
  14. var split = phrase.Split(new[] { "\"ogin\":", ",\"foto_i\"", "," }, StringSplitOptions.RemoveEmptyEntries);
  15. Console.WriteLine(string.Join(", ", split));
  16. }
  17. }
  18. }
  19.  
Success #stdin #stdout 0.01s 131776KB
stdin
Standard input is empty
stdout
"RED", "GREEN", "BLUE", "BLUE"