るりまサーチ

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

別のキーワード

  1. generic default_port
  2. generic build
  3. generic build2
  4. generic fragment

クラス

キーワード

検索結果

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

self.class.component を返します。

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

@see URI::Generic.component...

URI::Generic.component -> [Symbol] (21121.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] (9119.0)

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

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

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

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

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

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

例:
require 'uri'

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