fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. var str = @".0.label unicode ""Area - 110""";
  8. int start = str.IndexOf('"');
  9. int end = str.LastIndexOf('"');
  10. if (start >= 0 && end > start) {
  11. // We have two separate locations
  12. Console.WriteLine(str.Substring(start+1, end-start-1));
  13. }
  14.  
  15. }
  16. }
Success #stdin #stdout 0.03s 14696KB
stdin
Standard input is empty
stdout
Area - 110