641件ヒット
[1-100件を表示]
(0.035秒)
ライブラリ
- English (24)
-
cgi
/ html (264) - csv (48)
-
irb
/ context (12) -
irb
/ input-method (72) -
rdoc
/ markup (48) - readline (12)
-
rexml
/ document (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ specification (12) - zlib (24)
クラス
- CSV (48)
-
Gem
:: Package :: TarInput (12) -
Gem
:: Specification (12) -
IRB
:: Context (12) -
IRB
:: FileInputMethod (12) -
IRB
:: InputMethod (12) -
IRB
:: ReadlineInputMethod (24) -
IRB
:: StdioInputMethod (24) -
RDoc
:: Markup (36) -
REXML
:: Text (12) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
CGI
:: HtmlExtension (264) - Kernel (24)
- Readline (12)
キーワード
-
$ INPUT _ RECORD _ SEPARATOR (12) -
$ RS (12) - Markup (12)
-
NEWS for Ruby 3
. 0 . 0 (5) - ZStream (12)
-
add
_ html (12) -
add
_ special (12) -
add
_ word _ pair (12) - cgi (12)
- checkbox (24)
-
checkbox
_ group (24) -
file
_ field (24) -
file
_ name (12) - filter (36)
- gets (36)
- hidden (24)
- line (24)
- new (24)
- normalize (12)
-
normalize
_ yaml _ input (12) -
password
_ field (24) -
radio
_ group (24) - rdoc (12)
-
rdoc
/ markup / to _ ansi (12) -
rdoc
/ markup / to _ bs (12) -
rdoc
/ markup / to _ html (12) - readline (12)
- reset (24)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
rubygems
/ security (12) - submit (24)
-
text
_ field (24) -
zipped
_ stream (12)
検索結果
先頭5件
-
Zlib
:: GzipFile :: Error # input -> String | nil (18202.0) -
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。 -
Gem
:: Specification . normalize _ yaml _ input(input) -> String (6309.0) -
YAML 形式の gemspec を正しくフォーマットします。
...YAML 形式の gemspec を正しくフォーマットします。
@param input 文字列か IO オブジェクトを指定します。... -
Kernel
$ $ INPUT _ RECORD _ SEPARATOR -> String | nil (6209.0) -
$/ の別名
...$/ の別名
require "English"
$INPUT_RECORD_SEPARATOR = '|'
array = []
while line = DATA.gets
array << line
end
p array #=> ["ugo|", "ego|", "fogo\n"]
__END__
ugo|ego|fogo... -
Kernel
$ $ RS -> String | nil (3109.0) -
$/ の別名
...$/ の別名
require "English"
$INPUT_RECORD_SEPARATOR = '|'
array = []
while line = DATA.gets
array << line
end
p array #=> ["ugo|", "ego|", "fogo\n"]
__END__
ugo|ego|fogo... -
IRB
:: FileInputMethod # gets -> String (3101.0) -
読み込んだファイルから文字列を 1 行読み込みます。
読み込んだファイルから文字列を 1 行読み込みます。 -
IRB
:: InputMethod # file _ name -> String (3101.0) -
ファイル名を文字列で返します。
ファイル名を文字列で返します。 -
IRB
:: ReadlineInputMethod # gets -> String (3101.0) -
標準入力から文字列を 1 行読み込みます。
標準入力から文字列を 1 行読み込みます。 -
IRB
:: ReadlineInputMethod # line(line _ no) -> String (3101.0) -
引数 line_no で指定した過去の入力を行単位で返します。
引数 line_no で指定した過去の入力を行単位で返します。
@param line_no 取得する行番号を整数で指定します。 -
IRB
:: StdioInputMethod # gets -> String (3101.0) -
標準入力から文字列を 1 行読み込みます。
標準入力から文字列を 1 行読み込みます。