- unescape(str) -> String[permalink][rdoc][edit]
- decode(str) -> String
- 
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 を文字列として与えます。