首页 > 编程 > Regex > 正文

用Javascript正则实现url链接的解析类

2020-03-16 21:18:37
字体:
来源:转载
供稿:网友
一个非常健全的 Javascript 链接(URL)解析类,他用了正则表达式可以准确获取一个完整的 URL 中每个部分的内容,包括协议、URL中包含的用户名和密码、主机名、端口、路径名、参数、锚点(Fragment Anchor)等信息
 
 

用 Javascript 解析链接(URL)是一个常见的需求,本文介绍了一个非常健全的用 Javascript 写的链接(URL)解析类,他可以准确获取一个完整的 URL 中每个部分的内容,包括协议、URL中包含的用户名和密码、主机名、端口、路径名、参数、锚点(Fragment Anchor)等信息。  

 

  1.   
  2. <body>   
  3. <div id="example">   
  4.     <div id="example_main">   
  5. <script type="text/javascript">   
  6. if (typeof Poly9 == 'undefined')   
  7. {   
  8.     var Poly9 = {};   
  9. }   
  10. Poly9.URLParser = function(url) {   
  11.  
  12.     this._fields = {   
  13.         'Username' : 4,    
  14.         'Password' : 5,    
  15.         'Port' : 7,    
  16.         'Protocol' : 2,    
  17.         'Host' : 6,    
  18.         'Pathname' : 8,    
  19.         'URL' : 0,    
  20.         'Querystring' : 9,    
  21.         'Fragment' : 10   
  22.     };   
  23.  
  24.     this._values = {};   
  25.     this._regex = null;   
  26.     this.version = 0.1;   
  27.     this._regex = /^((/w+):////)?((/w+):?(/w+)?@)?([^///?:]+):?(/d+)?(//?[^/?#]+)?/??([^#]+)?#?(/w*)/;   
  28.     for(var f in this._fields)   
  29.     {   
  30.         this['get' + f] = this._makeGetter(f);   
  31.     }   
  32.  
  33.     if (typeof url != 'undefined')   
  34.     {   
  35.         this._parse(url);   
  36.     }   
  37. }   
  38. Poly9.URLParser.prototype.setURL = function(url) {   
  39.     this._parse(url);   
  40. }   
  41.  
  42. Poly9.URLParser.prototype._initValues = function() {   
  43.     for(var f in this._fields)   
  44.     {   
  45.         this._values[f] = '';   
  46.     }   
  47. }   
  48.  
  49. Poly9.URLParser.prototype._parse = function(url) {   
  50.     this._initValues();   
  51.     var r = this._regex.exec(url);   
  52.     if (!r) throw "DPURLParser::_parse -> Invalid URL";   
  53.  
  54.     for(var f in this._fields) if (typeof r[this._fields[f]] != 'undefined')   
  55.     {   
  56.         this._values[f] = r[this._fields[f]];   
  57.     }   
  58. }   
  59. Poly9.URLParser.prototype._makeGetter = function(field) {   
  60.     return function() {   
  61.         return this._values[field];   
  62.     }   
  63. }   
  64. var url = 'http://user:password@www.vevb.com:1234/test/test.asp?id=1#test';   
  65. var p = new Poly9.URLParser(url);   
  66. document.write("<strong>URL:</strong> " + url + "<br><br>");   
  67. document.write("解析结果如下:<br><br>");   
  68. document.write("<strong>协议:</strong> " + p.getProtocol() + "<br>");   
  69. document.write("<strong>用户:</strong> " + p.getUsername() + "<br>");   
  70. document.write("<strong>密码:</strong> " + p.getPassword() + "<br>");   
  71. document.write("<strong>主机:</strong> " + p.getHost() + "<br>");   
  72. document.write("<strong>端口:</strong> " + p.getPort() + "<br>");   
  73. document.write("<strong>路径:</strong> " + p.getPathname() + "<br>");   
  74. document.write("<strong>查询字符串:</strong> " + p.getQuerystring() + "<br>");   
  75. document.write("<strong>锚点:</strong> " + p.getFragment() + "<br>");   
  76. </script>   
  77.     </div>   
  78. </div>   
  79. </body>  

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表