foreach(string message in networkRequests)
{
string temp = message;
int index = temp.GetLastCharIndex("url\":\"");
temp = temp.Substring(index);
int lastIndex = temp.GetIndexOf("},");
temp = temp.Substring(0, lastIndex);
results.Add(temp);
}