这是我的正则表达式:
s = /(?<head>http|https):\/\/(?<host>[^\/]+)/.match("http://www.myhost.com")
我如何获得head
和host
组?
s['head'] => "http"
s['host'] => "www.myhost.com"
你也可以使用URI ...
1.9.3p327 > require 'uri'
=> true
1.9.3p327 > u = URI.parse("http://www.myhost.com")
=> #<URI::HTTP:0x007f8bca2239b0 URL:http://www.myhost.com>
1.9.3p327 > u.scheme
=> "http"
1.9.3p327 > u.host
=> "www.myhost.com"
使用captures
>>
string = ...
one, two, three = string.match(/pattern/).captures
您可能应该按照上面的建议将 uri 库用于此目的,但是每当您将字符串与正则表达式匹配时,您都可以使用特殊变量获取捕获的值:
"foo bar baz" =~ /(bar)\s(baz)/
1美元
=> '酒吧'
2美元
=> '巴兹'
等等...