用 C# 分析 URL 中的参数信息

None.gif using  System;
None.gif
using  System.Collections.Specialized;
None.gif
using  System.Text.RegularExpressions;
None.gif
None.gif
namespace  UrlParse
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**//// <summary>
InBlock.gif    
/// 分析 url 字符串中的参数信息
ExpandedSubBlockEnd.gif    
/// </summary>

InBlock.gif    class Class1
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 应用程序的主入口点。
ExpandedSubBlockEnd.gif        
/// </summary>

InBlock.gif        [STAThread]
InBlock.gif        
static void Main(string[] args)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
string url = "http://www.xxx.com/xyz/hello.asp?a=3&typeId=45&cc=ILoveYou";
InBlock.gif            NameValueCollection nvc;
InBlock.gif            
string baseUrl;
InBlock.gif
InBlock.gif            ParseUrl(url, 
out baseUrl, out nvc);
InBlock.gif
InBlock.gif            
// output results
InBlock.gif
            Console.WriteLine("baseUrl: {0}", baseUrl);
InBlock.gif            Console.WriteLine(
"parameters:");
InBlock.gif
InBlock.gif            
for (int i = 0; i < nvc.Count; i++)
InBlock.gif                Console.WriteLine(
"{0}, {1}", nvc.Keys[i], nvc[i]);
InBlock.gif
InBlock.gif            Console.ReadLine();
ExpandedSubBlockEnd.gif        }

InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif        
/**//// <summary>
InBlock.gif        
/// 分析 url 字符串中的参数信息
InBlock.gif        
/// </summary>
InBlock.gif        
/// <param name="url">输入的 URL</param>
InBlock.gif        
/// <param name="baseUrl">输出 URL 的基础部分</param>
InBlock.gif        
/// <param name="nvc">输出分析后得到的 (参数名,参数值) 的集合</param>
InBlock.gif        
/// <author>木野狐(Neil Chen)</author>
ExpandedSubBlockEnd.gif        
/// <date>2005-06-23</date>

ExpandedSubBlockStart.gifContractedSubBlock.gif        static void ParseUrl(string url, out string baseUrl, out NameValueCollection nvc) dot.gif{
InBlock.gif            
if (url == null)
InBlock.gif                
throw new ArgumentNullException("url");
InBlock.gif
InBlock.gif            nvc 
= new NameValueCollection();
InBlock.gif            baseUrl 
= "";
InBlock.gif
InBlock.gif            
if (url == "")
InBlock.gif                
return;            
InBlock.gif            
InBlock.gif            
int questionMarkIndex = url.IndexOf('?');
InBlock.gif            
ExpandedSubBlockStart.gifContractedSubBlock.gif            
if (questionMarkIndex == -1dot.gif{
InBlock.gif                baseUrl 
= url;
InBlock.gif                
return;
ExpandedSubBlockEnd.gif            }

InBlock.gif            baseUrl 
= url.Substring(0, questionMarkIndex);
InBlock.gif            
if (questionMarkIndex == url.Length - 1)
InBlock.gif                
return;
InBlock.gif            
string ps = url.Substring(questionMarkIndex + 1);
InBlock.gif
InBlock.gif            
// 开始分析参数对    
InBlock.gif
            Regex re = new Regex(@"(^|&)?(\w+)=([^&]+)(&|$)?", RegexOptions.Compiled);
InBlock.gif            MatchCollection mc 
= re.Matches(ps);
InBlock.gif
ExpandedSubBlockStart.gifContractedSubBlock.gif            
foreach (Match m in mc) dot.gif{                
InBlock.gif                nvc.Add(m.Result(
"$2"), m.Result("$3"));
ExpandedSubBlockEnd.gif            }
        
ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif    }

ExpandedBlockEnd.gif}

None.gif
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值