977件ヒット
[1-100件を表示]
(0.041秒)
別のキーワード
ライブラリ
- English (24)
- ビルトイン (72)
-
cgi
/ html (192) - etc (36)
-
irb
/ context (36) -
irb
/ input-method (276) - logger (24)
- nkf (12)
-
rdoc
/ markup (24) - rss (144)
- win32ole (24)
- zlib (24)
クラス
-
Encoding
:: Converter (48) -
Encoding
:: InvalidByteSequenceError (12) -
IRB
:: Context (36) -
IRB
:: FileInputMethod (36) -
IRB
:: InputMethod (48) -
IRB
:: ReadlineInputMethod (72) -
IRB
:: StdioInputMethod (72) - Logger (24)
-
RDoc
:: Markup (12) -
RSS
:: Maker :: RSSBase (12) -
RSS
:: Maker :: TextinputBase (96) -
RSS
:: RDF :: Textinput (24) -
WIN32OLE
_ PARAM (24) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
CGI
:: HtmlExtension (192) - Etc (36)
- Kernel (36)
キーワード
-
$ INPUT _ LINE _ NUMBER (12) -
$ NR (12) - FileInputMethod (12)
- InputMethod (12)
- Markup (12)
-
NEWS for Ruby 3
. 0 . 0 (5) - NKF (12)
-
PC
_ FILESIZEBITS (12) -
PC
_ PIPE _ BUF (12) -
PC
_ VDISABLE (12) - ReadlineInputMethod (12)
- StdioInputMethod (12)
- TextinputBase (12)
- ZStream (12)
- about (12)
- about= (12)
-
add
_ special (12) - checkbox (24)
-
checkbox
_ group (24) - debug (24)
- description (12)
- description= (12)
- encoding (36)
- eof? (24)
-
file
_ field (12) -
file
_ input? (12) -
file
_ name (12) - gets (48)
- hidden (12)
-
incomplete
_ input? (12) - input? (12)
- io (12)
-
irb
/ input-method (12) - line (24)
- link (12)
- link= (12)
- loop (12)
- name (12)
- name= (12)
- new (60)
- output? (12)
-
password
_ field (12) -
primitive
_ convert (48) -
radio
_ group (12) - rdoc (12)
-
rdoc
/ markup / to _ bs (12) -
readable
_ atfer _ eof? (36) - reset (12)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
rubygems
/ package / tar _ input (12) -
rubygems
/ security (12) - submit (24)
-
text
_ field (12) - textinput (12)
- title (12)
- title= (12)
検索結果
先頭5件
-
Zlib
:: GzipFile :: Error # input -> String | nil (21101.0) -
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。 -
Kernel
$ $ INPUT _ LINE _ NUMBER -> Integer (12207.0) -
$. の別名
...$. の別名
1 e
2 f
3 g
4 h
5 i
# end of a.txt
require "English"
File.foreach(ARGV.at(0)){|line|
# read line
}
p $INPUT_LINE_NUMBER
# end of sample.rb
ruby sample.rb a.txt
#=> 5... -
RSS
:: Maker :: TextinputBase (12000.0) -
RSS 1.0の場合はtitle,description,name, link,maker.channelを適切に設定する必要がありま す.
RSS 1.0の場合はtitle,description,name,
link,maker.channelを適切に設定する必要がありま
す.
RSS 0.91/2.0の場合はtitle,description,
name,linkを設定する必要があります. -
irb
/ input-method (12000.0) -
irb が入力を扱うためのサブライブラリです。
...irb が入力を扱うためのサブライブラリです。
ユーザが直接使用するものではありません。... -
rubygems
/ package / tar _ input (12000.0) -
gem-format な tar ファイルを読み込む Gem::Package::TarReader のラッ パークラスを提供するライブラリです。
gem-format な tar ファイルを読み込む Gem::Package::TarReader のラッ
パークラスを提供するライブラリです。 -
Encoding
:: InvalidByteSequenceError # incomplete _ input? -> bool (9213.0) -
エラー発生時に入力文字列が不足している場合に真を返します。
...t[例][ruby]{
ec = Encoding::Converter.new("EUC-JP", "ISO-8859-1")
begin
ec.convert("abc\xA1z")
rescue Encoding::InvalidByteSequenceError
p $!
#=> #<Encoding::InvalidByteSequenceError: "\xA1" followed by "z" on EUC-JP>
p $!.incomplete_input? #=> false
end
begin
ec.convert("abc\xA1")......ec.finish
rescue Encoding::InvalidByteSequenceError
p $! #=> #<Encoding::InvalidByteSequenceError: incomplete "\xA1" on EUC-JP>
p $!.incomplete_input? #=> true
end
//}... -
IRB
:: Context # file _ input? -> bool (9201.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
IRB
:: InputMethod # readable _ atfer _ eof? -> false (9100.0) -
入力が EOF(End Of File)に達した後も読み込みが行えるかどうかを返します。
入力が EOF(End Of File)に達した後も読み込みが行えるかどうかを返します。 -
IRB
:: ReadlineInputMethod # readable _ atfer _ eof? -> false (9100.0) -
入力が EOF(End Of File)に達した後も読み込みが行えるかどうかを返します。
入力が EOF(End Of File)に達した後も読み込みが行えるかどうかを返します。