1230件ヒット
[1-100件を表示]
(0.023秒)
ライブラリ
- English (60)
- ビルトイン (12)
- csv (24)
- etc (12)
-
irb
/ context (36) -
irb
/ input-method (276) - readline (12)
-
rexml
/ document (12) - rss (540)
-
rubygems
/ package / tar _ input (108) -
rubygems
/ requirement (12) -
rubygems
/ specification (24) -
rubygems
/ version (12) -
shell
/ builtin-command (12) -
shell
/ filter (12) -
shell
/ system-command (6) - win32ole (24)
- zlib (12)
クラス
- CSV (24)
-
Encoding
:: InvalidByteSequenceError (12) -
Gem
:: Package :: TarInput (96) -
Gem
:: Requirement (12) -
Gem
:: Specification (24) -
Gem
:: Version (12) -
IRB
:: Context (36) -
IRB
:: FileInputMethod (36) -
IRB
:: InputMethod (48) -
IRB
:: ReadlineInputMethod (72) -
IRB
:: StdioInputMethod (72) -
REXML
:: Text (12) -
RSS
:: Maker :: RSSBase (12) -
RSS
:: Maker :: TextinputBase (96) -
RSS
:: RDF (24) -
RSS
:: RDF :: Channel (24) -
RSS
:: RDF :: Channel :: Textinput (24) -
RSS
:: RDF :: Textinput (144) -
RSS
:: Rss (12) -
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)
キーワード
-
$ DEFAULT _ INPUT (12) -
$ INPUT _ LINE _ NUMBER (12) -
$ INPUT _ RECORD _ SEPARATOR (12) -
$ NR (12) -
$ RS (12) - FileInputMethod (12)
- InputMethod (12)
-
PC
_ MAX _ INPUT (12) - ReadlineInputMethod (12)
- StdioInputMethod (12)
- TarInput (12)
- TextInput (12)
- Textinput (60)
- TextinputBase (12)
- about (12)
- about= (12)
- close (12)
- create (24)
- date (12)
- date= (12)
- description (36)
- description= (36)
- each (12)
- encoding (36)
- eof? (24)
-
extract
_ entry (12) -
file
_ input? (12) -
file
_ name (12) - filter (24)
-
from
_ yaml (12) - gets (48)
-
incomplete
_ input? (12) - input= (36)
- input? (12)
- io (12)
-
irb
/ input-method (12) - line (24)
- link (36)
- link= (36)
-
load
_ gemspec (12) - name (36)
- name= (36)
- new (72)
- normalize (12)
-
normalize
_ yaml _ input (12) - open (12)
- output? (12)
-
readable
_ atfer _ eof? (36) - resource (12)
- resource= (12)
-
rubygems
/ package / tar _ input (12) - textInput (12)
- textInput= (12)
- textinput (48)
- textinput= (24)
- title (36)
- title= (36)
-
zipped
_ stream (12)
検索結果
先頭5件
-
Shell
:: Filter # input -> Shell :: Filter | nil (24201.0) -
現在のフィルターを返します。
現在のフィルターを返します。 -
Zlib
:: GzipFile :: Error # input -> String | nil (24201.0) -
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。 -
Readline
. input=(input) (12440.0) -
readline メソッドで使用する入力用の File オブジェクト input を指定します。 戻り値は指定した File オブジェクト input です。
...readline メソッドで使用する入力用の File オブジェクト input を指定します。
戻り値は指定した File オブジェクト input です。
@param input File オブジェクトを指定します。... -
Gem
:: Specification . normalize _ yaml _ input(input) -> String (12408.0) -
YAML 形式の gemspec を正しくフォーマットします。
...YAML 形式の gemspec を正しくフォーマットします。
@param input 文字列か IO オブジェクトを指定します。... -
WIN32OLE
_ PARAM # input? -> bool (12219.0) -
パラメータがクライアントからサーバへ与えるものかを判定します。
...N32OLE_PARAM#input?が真)、out(サーバがクライアントへ与える。
WIN32OLE_PARAM#output?が真)および、inout(クライアントからサーバ
へ与え、サーバがクライアントへ与える)の3種類の方向属性のいずれかを持ち
ます。
input?メソッド......たはinoutならば真を返します。
tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Workbook')
method = WIN32OLE_METHOD.new(tobj, 'SaveAs')
param1 = method.params[0]
puts param1.input? # => true
@see http://msdn.microsoft.com/en-us/library/aa367051(v=VS.85).aspx... -
Encoding
:: InvalidByteSequenceError # incomplete _ input? -> bool (12213.0) -
エラー発生時に入力文字列が不足している場合に真を返します。
...SequenceError: "\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... -
Kernel
$ $ INPUT _ RECORD _ SEPARATOR -> String | nil (12207.0) -
$/ の別名
...$/ の別名
require "English"
$INPUT_RECORD_SEPARATOR = '|'
array = []
while line = DATA.gets
array << line
end
p array #=> ["ugo|", "ego|", "fogo\n"]
__END__
ugo|ego|fogo...