using System; public class Test { public static void Main() { var str = @".0.label unicode ""Area - 110"""; int start = str.IndexOf('"'); int end = str.LastIndexOf('"'); if (start >= 0 && end > start) { // We have two separate locations Console.WriteLine(str.Substring(start+1, end-start-1)); } } }