简单写了个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(); ; }
时间: 2024-10-11 10:26:36
简单写了个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(); ; }