るりまサーチ

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

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

ライブラリ

キーワード

検索結果

URI::Generic#component -> [Symbol] (6201.0)

self.class.component を返します。

...self.class.component を返します。

@see URI::Generic.component...

URI::Generic.component -> [Symbol] (6201.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::COMPONENT -> [Symbol] (6201.0)

URI::Generic で利用可能なコンポーネントの一覧です。

...
URI::Generic
で利用可能なコンポーネントの一覧です。...

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

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

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

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

例:
require 'uri'

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