1530件ヒット
[1-100件を表示]
(0.068秒)
種類
ライブラリ
- English (60)
- ビルトイン (96)
-
cgi
/ html (264) - csv (36)
- etc (252)
-
irb
/ context (24) -
irb
/ input-method (204) - logger (24)
- nkf (12)
-
rdoc
/ markup (24) - readline (24)
-
rexml
/ document (12) - rss (288)
-
rubygems
/ package / tar _ input (60) -
rubygems
/ specification (24) -
rubygems
/ version (12) -
shell
/ builtin-command (12) -
shell
/ filter (12) -
shell
/ system-command (6) - win32ole (24)
- zlib (24)
クラス
- CSV (36)
-
Encoding
:: Converter (48) -
Encoding
:: InvalidByteSequenceError (12) -
Gem
:: Package :: TarInput (60) -
Gem
:: Specification (24) -
Gem
:: Version (12) -
IRB
:: Context (24) -
IRB
:: FileInputMethod (36) -
IRB
:: InputMethod (36) -
IRB
:: ReadlineInputMethod (72) -
IRB
:: StdioInputMethod (36) - Logger (24)
-
RDoc
:: Markup (24) -
REXML
:: Text (12) -
RSS
:: Maker :: TextinputBase (48) -
RSS
:: RDF :: Channel (24) -
RSS
:: RDF :: Channel :: Textinput (24) -
RSS
:: RDF :: Textinput (48) -
RSS
:: Rss :: Channel (24) -
RSS
:: Rss :: Channel :: TextInput (96) -
Shell
:: AppendFile (6) -
Shell
:: AppendIO (6) -
Shell
:: Filter (12) -
Shell
:: SystemCommand (6) -
WIN32OLE
_ PARAM (24) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
CGI
:: HtmlExtension (264) - Etc (252)
- Kernel (96)
- Readline (24)
キーワード
-
$ DEFAULT _ INPUT (12) -
$ INPUT _ LINE _ NUMBER (12) -
$ INPUT _ RECORD _ SEPARATOR (12) -
$ NR (12) -
$ RS (12) - FileInputMethod (12)
- NKF (12)
-
PC
_ 2 _ SYMLINKS (12) -
PC
_ ALLOC _ SIZE _ MIN (12) -
PC
_ ASYNC _ IO (12) -
PC
_ CHOWN _ RESTRICTED (12) -
PC
_ FILESIZEBITS (12) -
PC
_ LINK _ MAX (12) -
PC
_ MAX _ CANON (12) -
PC
_ MAX _ INPUT (12) -
PC
_ NAME _ MAX (12) -
PC
_ NO _ TRUNC (12) -
PC
_ PATH _ MAX (12) -
PC
_ PIPE _ BUF (12) -
PC
_ PRIO _ IO (12) -
PC
_ REC _ INCR _ XFER _ SIZE (12) -
PC
_ REC _ MAX _ XFER _ SIZE (12) -
PC
_ REC _ MIN _ XFER _ SIZE (12) -
PC
_ REC _ XFER _ ALIGN (12) -
PC
_ SYMLINK _ MAX (12) -
PC
_ SYNC _ IO (12) -
PC
_ TIMESTAMP _ RESOLUTION (12) -
PC
_ VDISABLE (12) - ReadlineInputMethod (12)
- TextInput (12)
- Textinput (12)
- ZStream (12)
-
add
_ html (12) -
add
_ special (12) - checkbox (24)
-
checkbox
_ group (24) - close (12)
- create (12)
- debug (24)
- description (12)
- description= (12)
- encoding (24)
- eof? (24)
-
extract
_ entry (12) -
file
_ field (24) -
file
_ input? (12) -
file
_ name (12) - filter (36)
-
from
_ yaml (12) - gets (24)
- hidden (24)
-
incomplete
_ input? (12) - input= (36)
- input? (12)
-
lex
_ getline (12) - line (24)
- link (36)
- link= (36)
-
load
_ gemspec (12) - loop (24)
- name (12)
- name= (12)
- new (60)
- normalize (12)
-
normalize
_ yaml _ input (12) - open (12)
- output? (12)
-
password
_ field (24) -
primitive
_ convert (48) - print (12)
-
radio
_ group (24) -
rdoc
/ markup / to _ html (12) -
readable
_ atfer _ eof? (36) - readline (12)
- reset (24)
- resource (12)
- resource= (12)
-
rubygems
/ security (12) - submit (24)
- textInput (12)
- textInput= (12)
-
text
_ field (24) - textinput (12)
- textinput= (12)
- title (36)
- title= (36)
検索結果
先頭5件
-
static VALUE lex
_ getline(void) (26116.0) -
関数 lex_gets を使って lex_input から Ruby プログラムを一行読みこみます。
...関数 lex_gets を使って lex_input から
Ruby プログラムを一行読みこみます。... -
Shell
:: Filter # input -> Shell :: Filter | nil (21201.0) -
現在のフィルターを返します。
現在のフィルターを返します。 -
Zlib
:: GzipFile :: Error # input -> String | nil (21201.0) -
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。 -
Gem
:: Specification . normalize _ yaml _ input(input) -> String (12308.0) -
YAML 形式の gemspec を正しくフォーマットします。
...YAML 形式の gemspec を正しくフォーマットします。
@param input 文字列か IO オブジェクトを指定します。... -
Encoding
:: InvalidByteSequenceError # incomplete _ input? -> bool (12213.0) -
エラー発生時に入力文字列が不足している場合に真を返します。
...します。
//emlist[例][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
//}... -
Kernel
$ $ DEFAULT _ INPUT -> IO (12207.0) -
$< の別名
...$< の別名
require "English"
while line = $DEFAULT_INPUT.gets
p line
end
# end of sample.rb
ruby sample.rb < /etc/passwd
# => "hoge:x:500:501::/home/hoge:/bin/bash\n"
...... -
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... -
IRB
:: Context # file _ input? -> bool (12201.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
IRB
:: ReadlineInputMethod # line(line _ no) -> String (12200.0) -
引数 line_no で指定した過去の入力を行単位で返します。
...引数 line_no で指定した過去の入力を行単位で返します。
@param line_no 取得する行番号を整数で指定します。...