fork download
  1. using System;
  2. using System.Globalization;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5.  
  6. public class Test
  7. {
  8.  
  9.  
  10. public static void Main()
  11. {
  12. string text= "GamerTag\":\"A Talented Boy\",\"GamerTileUrl";
  13. string result = text.Split(':').Last().Split(',').First().Trim('"');
  14. Console.Write(result);
  15. }
  16. }
Success #stdin #stdout 0.02s 33888KB
stdin
Standard input is empty
stdout
A Talented Boy