本文简要介绍ruby语言中 URI::RFC2396_Parser.new
的用法。
用法
new(opts = {})
概要
URI::Parser.new([opts])
参数
构造函数接受哈希作为解析器的选项。选项的键是 URI
组件的模式名称,选项的值是模式字符串。构造函数生成一组用于解析 URI 的正则表达式。
您可以使用以下键:
* :ESCAPED (URI::PATTERN::ESCAPED in default) * :UNRESERVED (URI::PATTERN::UNRESERVED in default) * :DOMLABEL (URI::PATTERN::DOMLABEL in default) * :TOPLABEL (URI::PATTERN::TOPLABEL in default) * :HOSTNAME (URI::PATTERN::HOSTNAME in default)
例子
p = URI::Parser.new(:ESCAPED => "(?:%[a-fA-F0-9]{2}|%u[a-fA-F0-9]{4})")
u = p.parse("http://example.jp/%uABCD") #=> #<URI::HTTP http://example.jp/%uABCD>
URI.parse(u.to_s) #=> raises URI::InvalidURIError
s = "http://example.com/ABCD"
u1 = p.parse(s) #=> #<URI::HTTP http://example.com/ABCD>
u2 = URI.parse(s) #=> #<URI::HTTP http://example.com/ABCD>
u1 == u2 #=> true
u1.eql?(u2) #=> false
相关用法
- Ruby RFC2396_Parser.parse用法及代码示例
- Ruby Range.end用法及代码示例
- Ruby Regexp named_captures()用法及代码示例
- Ruby Ractor.receive_if用法及代码示例
- Ruby Range new()用法及代码示例
- Ruby Rational.inspect用法及代码示例
- Ruby Random.bytes用法及代码示例
- Ruby Random hex()用法及代码示例
- Ruby Range.size用法及代码示例
- Ruby Rational.rational <=>用法及代码示例
- Ruby Recorder类用法及代码示例
- Ruby Ruby.parse_method_parameters用法及代码示例
- Ruby Regexp to_s()用法及代码示例
- Ruby Regexp.eql?用法及代码示例
- Ruby Row.delete用法及代码示例
- Ruby Rational to_i()用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Resolution.new用法及代码示例
- Ruby Regexp.fixed_encoding?用法及代码示例
- Ruby RuntimeError类用法及代码示例
- Ruby Rational.rat ** numeric用法及代码示例
- Ruby Ractor.close_incoming用法及代码示例
- Ruby Resolver.resolve用法及代码示例
- Ruby Random random_number()用法及代码示例
- Ruby Range last()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 RFC2396_Parser.new。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。