How to proceed depends very much on how consistent is the
data format. Assuming all lines have the same format as
the example, then maybe this example will give you some
ideas.
static void Main(string[] args)
{
string path =
@"Found YouTube URL for ""Faceless 1 - 7 - Download My Conscious"" : " +
"https://www.youtube.com/watch?v=1d2ovu4IMdE";
int x = path.IndexOf("\"");
int y = path.IndexOf("\"", x+1);
string title= path.Substring(x+1, y - x - 1);
int urlstrt = path.IndexOf("http");
string url = path.Substring(urlstrt);
Console.WriteLine(title);
Console.WriteLine(url);
Console.ReadLine();
}
/*
Faceless 1 - 7 - Download My Conscious
https://www.youtube.com/watch?v=1d2ovu4IMdE
*/
- Wayne