るりまサーチ

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

別のキーワード

  1. _builtin |
  2. ipaddr |
  3. set |
  4. integer |
  5. nilclass |

ライブラリ

クラス

モジュール

キーワード

検索結果

URI::Generic#userinfo -> String | nil (18218.0)

自身の userinfo を "username:password" という形式の文字列で返します。 設定されていない場合は nil を返します。

...自身の userinfo を "username:password" という形式の文字列で返します。
設定されていない場合は nil を返します。...

URI::Generic#user -> String | nil (123.0)

自身の userinfo を文字列で返します。

...自身の userinfo を文字列で返します。

userinfo
が「username:password」の形式である場合は、username 部を返します。
設定されていない場合は nil を返します。...

URI.split(url) -> [String | nil] (107.0)

URI を要素に分割した文字列の配列を返します。

...URI を要素に分割した文字列の配列を返します。

各要素の種類と順番は以下のとおりです。

* scheme
* userinfo
* host
* port
* registry
* path
* opaque
* query
* fragment

@param url パースしたい URI を文字列として与えます。

@ra...