203件ヒット
[201-203件を表示]
(0.044秒)
種類
- 特異メソッド (110)
- インスタンスメソッド (46)
- 文書 (23)
- クラス (12)
- 定数 (12)
クラス
-
URI
:: Generic (48)
キーワード
- COMPONENT (12)
- InvalidComponentError (12)
-
NEWS for Ruby 2
. 1 . 0 (12) -
NEWS for Ruby 2
. 2 . 0 (11) - decode (7)
-
decode
_ www _ form (12) -
decode
_ www _ form _ component (12) -
each
_ strongly _ connected _ component (22) -
each
_ strongly _ connected _ component _ from (22) - encode (7)
-
encode
_ www _ form (12) -
encode
_ www _ form _ component (12) - escape (7)
- select (12)
- unescape (7)
検索結果
-
URI
. decode(str) -> String (3006.0) -
URI 文字列をデコードした文字列を返します。
...
URI 文字列をデコードした文字列を返します。
このメソッドは obsolete です。
代わりに
CGI.unescape,
URI.decode_www_form,
URI.decode_www_form_component
などの使用を検討してください。
例:
require 'uri'
puts URI.unescape('http://images.google.co.jp/......images?q=%A5%E2%A5%CA%A5%EA%A5%B6&ie=EUC-JP')
#=> "http://images.google.co.jp/images?q=モナリザ&ie=EUC-JP"
@param str URI を文字列として与えます。...