るりまサーチ

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

別のキーワード

  1. string []=
  2. string slice
  3. string []
  4. string slice!
  5. string gsub

ライブラリ

モジュール

検索結果

<< < ... 2 3 4 >>

RDoc::CodeObject#parent_name -> String (3102.0)

self.parent の名前を返します。

...self.parent の名前を返します。

@see RDoc::CodeObject#parent...

CGI::HtmlExtension#form(method = "post", action = nil, enctype = "application/x-www-form-urlencoded") -> String (243.0)

form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

.../x-www-form-urlencoded" です。

例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form("get", "url"){ "string" }
# <FORM M...
...ETHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>...

CGI::HtmlExtension#form(method = "post", action = nil, enctype = "application/x-www-form-urlencoded") { ... } -> String (243.0)

form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

.../x-www-form-urlencoded" です。

例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form("get", "url"){ "string" }
# <FORM M...
...ETHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>...

Net::FTP#last_response -> String (108.0)

サーバからの最後の応答を文字列で返します。

...サーバからの最後の応答を文字列で返します。

例えばログイン(Net::FTP#login)に成功した場合には
"230 Login successful.\n" を返します。

@see Net::FTP#last_response_code...

Refinement#import_methods(*modules) -> self (19.0)

モジュールからメソッドをインポートします。

...level)
' ' * level + self
end
end

module M
refine String do
import_methods StrUtils
end
end

using M
p "foo".indent(3) # => " foo"

module M
refine String do
import_methods Enumerable
# Can't import method which is not defined with Ruby code: Enumerable#drop
end
end
//}...

絞り込み条件を変える

<< < ... 2 3 4 >>