1

这是我的正则表达式:

s = /(?<head>http|https):\/\/(?<host>[^\/]+)/.match("http://www.myhost.com")

我如何获得headhost组?

4

3 回答 3

5
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" 
于 2012-11-27T23:59:01.510 回答
2

使用captures>>

string = ...
one, two, three = string.match(/pattern/).captures
于 2012-11-28T00:01:17.037 回答
0

您可能应该按照上面的建议将 uri 库用于此目的,但是每当您将字符串与正则表达式匹配时,您都可以使用特殊变量获取捕获的值:

"foo bar baz" =~ /(bar)\s(baz)/

1美元

=> '酒吧'

2美元

=> '巴兹'

等等...

于 2012-11-28T04:22:20.973 回答