るりまサーチ (Ruby 2.7.0)

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

別のキーワード

  1. socket iff_802_1q_vlan
  2. openssl q=
  3. openssl q
  4. dsa q
  5. rsa q

ライブラリ

モジュール

検索結果

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

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