我有一个网址:
https://www.facebook.com/video.php?v=10154500552625464
我需要分成一个键值对:
价值:https://www.facebook.com/video.php?v=10154500552625464 密钥:10154500552625464
我需要将它们放在字典中:
static Dictionary<string, string> GetVideoLinks(string Data)
{
Regex pattern = new Regex (@"https:\/\/www\.facebook\.com\/video.php\?v=?<id>[0-9]{17}");
return ret;
}