I have a Url:
https://www.facebook.com/video.php?v=10154500552625464
that I need to split into a key value pair with:
Value: https://www.facebook.com/video.php?v=10154500552625464 Key: 10154500552625464
I need to place them in a Dictionary:
static Dictionary<string, string> GetVideoLinks(string Data)
{
Regex pattern = new Regex (@"https:\/\/www\.facebook\.com\/video.php\?v=?<id>[0-9]{17}");
return ret;
}