using System;
public class Program
{
public static void Main()
var item = "random words \"text to extract\" random words continue";
int pFrom = item.IndexOf('"');
int pTo = item.LastIndexOf('"');
String result = item.Substring(pFrom, pTo - pFrom);
result.Dump();
}