るりまサーチ (Ruby 2.7.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.025秒)
トップページ > バージョン:2.7.0[x] > クエリ:uri[x] > クエリ:unescape[x]

別のキーワード

  1. uri build
  2. uri extract
  3. uri new
  4. open-uri open
  5. uri regexp

ライブラリ

クラス

モジュール

検索結果

URI.unescape(str) -> String (96478.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=...

Gem::RemoteFetcher#unescape(str) -> String (54388.0)

URI 文字列をデコードした文字列を返します。

URI 文字列をデコードした文字列を返します。

@param str 文字列を指定します。

@see URI.unescape

URI.decode(str) -> String (51178.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=...