るりまサーチ

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

別のキーワード

  1. openssl value
  2. rss value=
  3. rss value
  4. rexml/document value
  5. _builtin each_value

ライブラリ

キーワード

検索結果

<< 1 2 > >>

RSS::TrackBackModel10::TrackBackAbout#value (21103.0)

@todo

@todo

RSS::TrackBackModel20::TrackBackAbout#value (21103.0)

@todo

@todo

CGI#out(options = "text/html") { .... } (18132.0)

HTTP ヘッダと、ブロックで与えられた文字列を標準出力に出力します。

...ew
cgi.out{ "string" }
# Content-Type: text/html
# Content-Length: 6
#
# string

cgi.out("text/plain"){ "string" }
# Content-Type: text/plain
# Content-Length: 6
#
# string

cgi.out({"nph"...
...tml; charset=iso-2022-jp
"language" => "ja",
"expires" => Time.now + (3600 * 24 * 30),
"cookie" => [cookie1, cookie2],
"my_header1" => "my_value",
"my_header2" => "my_value"}){ "string" }

@see CGI#header...

RSS::TrackBackModel10::TrackBackAbout#value= (9103.0)

@todo

@todo

RSS::TrackBackModel20::TrackBackAbout#value= (9103.0)

@todo

@todo

絞り込み条件を変える

Resolv::DNS#timeouts=(values) (6201.0)

DNSリゾルバのタイムアウト時間を設定します。

...DNSリゾルバのタイムアウト時間を設定します。

//emlist[][ruby]{
dns.timeouts = 3
//}

@param values タイムアウト時間(秒)を数値か数値の配列で指定します。配列
を指定した場合は応答を受信するまでの再試行時のタイムア...

REXML::Attribute#write(output, indent = -1) -> object (117.0)

output に self の情報を name='value' という形式で書き込みます。

...output に self の情報を name='value' という形式で書き込みます。

out
put が返ります。

@param output 書き込み先の IO オブジェクト
@param indent インデントレベル、ここでは無視される...

CGI#header(options = "text/html") -> String (45.0)

HTTP ヘッダを options に従って生成します。 CGI#out と違い、標準出力には出力しません。 CGI#out を使わずに自力で HTML を出力したい場合などに使います。 このメソッドは文字列エンコーディングを変換しません。

...HTTP ヘッダを options に従って生成します。 CGI#out と違い、標準出力には出力しません。
CGI#out を使わずに自力で HTML を出力したい場合などに使います。
このメソッドは文字列エンコーディングを変換しません。

ヘッダのキ...
..."expires" => Time.now + 30,
"cookie" => [cookie1, cookie2],
"my_header1" => "my_value",
"my_header2" => "my_value"})

例:
cgi = CGI.new('html3')
print cgi.header({"charset" => "shift_jis", "status" => "OK"})
pri...

MatchData#bytebegin(n) -> Integer | nil (25.0)

n 番目の部分文字列先頭のバイトオフセットを返します。

...ytebegin(4) # => index 4 out of matches (IndexError)
//}

//emlist[シンボルを指定する例][ruby]{
/(?<key>\S+):\s*(?<value>\S+)/ =~ "name: ruby"
$~ # => #<MatchData "name: ruby" key:"name" value:"ruby">
$~.bytebegin(:key) # => 0
$~.bytebegin(:value) # => 6
$~.bytebegin(:f...

MatchData#bytebegin(name) -> Integer | nil (25.0)

n 番目の部分文字列先頭のバイトオフセットを返します。

...ytebegin(4) # => index 4 out of matches (IndexError)
//}

//emlist[シンボルを指定する例][ruby]{
/(?<key>\S+):\s*(?<value>\S+)/ =~ "name: ruby"
$~ # => #<MatchData "name: ruby" key:"name" value:"ruby">
$~.bytebegin(:key) # => 0
$~.bytebegin(:value) # => 6
$~.bytebegin(:f...

絞り込み条件を変える

MatchData#byteend(n) -> Integer | nil (25.0)

n 番目の部分文字列終端のバイトオフセットを返します。

...$~.byteend(4) # => index 4 out of matches (IndexError)
//}

//emlist[シンボルを指定する例][ruby]{
/(?<key>\S+):\s*(?<value>\S+)/ =~ "name: ruby"
$~ # => #<MatchData "name: ruby" key:"name" value:"ruby">
$~.byteend(:key) # => 4
$~.byteend(:value) # => 10
$~.byteend(:foo)...

MatchData#byteend(name) -> Integer | nil (25.0)

n 番目の部分文字列終端のバイトオフセットを返します。

...$~.byteend(4) # => index 4 out of matches (IndexError)
//}

//emlist[シンボルを指定する例][ruby]{
/(?<key>\S+):\s*(?<value>\S+)/ =~ "name: ruby"
$~ # => #<MatchData "name: ruby" key:"name" value:"ruby">
$~.byteend(:key) # => 4
$~.byteend(:value) # => 10
$~.byteend(:foo)...
<< 1 2 > >>