るりまサーチ

最速Rubyリファレンスマニュアル検索!
48件ヒット [1-48件を表示] (0.093秒)

別のキーワード

  1. cgi escape
  2. cgi escape_html
  3. shellwords escape
  4. cgi escape_element
  5. cgi table_for_escape_html__

ライブラリ

クラス

キーワード

検索結果

Gem::RemoteFetcher#escape(str) -> String (18120.0)

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

...URI 文字列をエンコードした文字列を返します。

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

@
see URI.escape...

String#shellescape -> String (6119.0)

文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。

...文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。

string.shellescape は、Shellwords.escape(string) と等価です。

@
return エスケープされた文字列を返します。
@
see Shellwords.#shellescape...

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

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

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

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

@
see URI.unescape...

URI::MailTo#headers=(s) (25.0)

自身のヘッダーを文字列で設定します。

...を文字列で設定します。

@
param s ヘッダーを表す文字列を指定します。

@
raise URI::InvalidComponentError 不正な引数 s に対して発生します。

例:
require 'uri'
m = URI.parse("mailto:nospam@example.com")
m.headers = URI.escape("subject=hello hello")...