如何将C#中的URL拆分为键值对?

时间:2014-09-03 19:19:27

标签: c# regex

我有一个网址:

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;
}

1 个答案:

答案 0 :(得分:0)

有一个框架类:HttpUtility.ParseQueryString