C# 正则取得URL地址栏参数
简单写了个C# 以正则获得URL地址栏参数的方法
public static string GetPara(string url, string name) { Regex reg = new Regex(@"(?:^|\?|&)" + name + "=(?<VAL>.+?)(?:&|$)"); Match m = reg.Match(url); return m.Groups["VAL"].ToString(); ; }
简单写了个C# 以正则获得URL地址栏参数的方法
public static string GetPara(string url, string name) { Regex reg = new Regex(@"(?:^|\?|&)" + name + "=(?<VAL>.+?)(?:&|$)"); Match m = reg.Match(url); return m.Groups["VAL"].ToString(); ; }