るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.014秒)
トップページ > クエリ:host[x] > クエリ:component[x]

別のキーワード

  1. etc sc_host_name_max
  2. http local_host
  3. http local_host=
  4. address host
  5. net/imap host

ライブラリ

クラス

検索結果

URI::Generic.component -> [Symbol] (18119.0)

URI の構成要素を表すシンボルの配列を返します。

...URI の構成要素を表すシンボルの配列を返します。

require 'uri'
p URI::Generic.component
p URI::MailTo.component

# => [:scheme, :userinfo, :host, :port, :registry, :path, :opaque, :query, :fragment]
# => [:scheme, :to, :headers]...

URI::Generic#select(*components) -> [String] (106.0)

指定された components に対応する構成要素を文字列の配列として返します。

...された components に対応する構成要素を文字列の配列として返します。

@param components 構成要素名をシンボルで指定します。

例:
require 'uri'

uri = URI.parse('http://myuser:mypass@my.example.com/test.rbx')
p uri.select(:userinfo, :host, :path)
#...