60件ヒット
[1-60件を表示]
(0.069秒)
ライブラリ
-
cgi
/ core (12) -
rubygems
/ remote _ fetcher (24) - shellwords (12)
- uri (12)
クラス
-
Gem
:: RemoteFetcher (24) - String (12)
-
URI
:: MailTo (12)
モジュール
-
CGI
:: QueryExtension (12)
キーワード
- headers= (12)
- shellescape (12)
- unescape (12)
-
unescape
_ filename? (12)
検索結果
先頭5件
-
Gem
:: RemoteFetcher # escape(str) -> String (18108.0) -
URI 文字列をエンコードした文字列を返します。
...URI 文字列をエンコードした文字列を返します。
@param str 文字列を指定します。
@see URI.escape... -
String
# shellescape -> String (6107.0) -
文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。
...文字列を Bourne シェルのコマンドライン中で安全に使えるようにエスケープします。
string.shellescape は、Shellwords.escape(string) と等価です。
@return エスケープされた文字列を返します。
@see Shellwords.#shellescape... -
CGI
:: QueryExtension # unescape _ filename? -> bool (6101.0) -
-
Gem
:: RemoteFetcher # unescape(str) -> String (6101.0) -
URI 文字列をデコードした文字列を返します。
...URI 文字列をデコードした文字列を返します。
@param str 文字列を指定します。
@see URI.unescape... -
URI
:: MailTo # headers=(s) (7.0) -
自身のヘッダーを文字列で設定します。
...を文字列で設定します。
@param s ヘッダーを表す文字列を指定します。
@raise URI::InvalidComponentError 不正な引数 s に対して発生します。
例:
require 'uri'
m = URI.parse("mailto:nospam@example.com")
m.headers = URI.escape("subject=hello hello")...