299件ヒット
[1-100件を表示]
(0.024秒)
別のキーワード
ライブラリ
- English (48)
- ビルトイン (24)
- csv (48)
- nkf (12)
- readline (12)
-
rubygems
/ package / tar _ input (36) -
rubygems
/ version (12) -
shell
/ filter (6) - win32ole (12)
- zlib (24)
クラス
- CSV (48)
-
Gem
:: Package :: TarInput (36) -
Gem
:: Version (12) -
Shell
:: Filter (6) -
WIN32OLE
_ PARAM (12) -
Zlib
:: GzipFile :: Error (12)
キーワード
-
$ INPUT _ LINE _ NUMBER (12) -
$ INPUT _ RECORD _ SEPARATOR (12) -
$ NR (12) -
$ RS (12) -
NEWS for Ruby 3
. 0 . 0 (5) - NKF (12)
- ZStream (12)
- cgi (12)
- create (12)
- each (12)
- filter (36)
-
load
_ gemspec (12) - loop (24)
- new (12)
- open (12)
- output? (12)
- rdoc (12)
- readline (12)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 4 feature (12) -
rubygems
/ security (12)
検索結果
先頭5件
-
Shell
:: Filter # input -> Shell :: Filter | nil (18202.0) -
現在のフィルターを返します。
現在のフィルターを返します。 -
Zlib
:: GzipFile :: Error # input -> String | nil (18202.0) -
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。
読み込んだ文字列(gzip 形式で圧縮されたもの)を返します。 -
Kernel
$ $ INPUT _ RECORD _ SEPARATOR -> String | nil (6221.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
$ $ INPUT _ LINE _ NUMBER -> Integer (6113.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
$ $ RS -> String | nil (3121.0) -
$/ の別名
...$/ の別名
require "English"
$INPUT_RECORD_SEPARATOR = '|'
array = []
while line = DATA.gets
array << line
end
p array #=> ["ugo|", "ego|", "fogo\n"]
__END__
ugo|ego|fogo... -
Gem
:: Package :: TarInput # each {|entry| . . . } (3101.0) -
data.tar.gz の各エントリをブロックに渡してブロックを評価します。
data.tar.gz の各エントリをブロックに渡してブロックを評価します。
@see Gem::Package::TarReader#each -
Gem
:: Package :: TarInput # load _ gemspec(io) -> Gem :: Specification | nil (3101.0) -
YAML 形式の gemspec を io から読み込みます。
YAML 形式の gemspec を io から読み込みます。
@param io 文字列か IO オブジェクトを指定します。
@see Gem::Specification.from_yaml -
Gem
:: Package :: TarInput . open(io , security _ policy = nil) {|is| . . . } (3101.0) -
@todo ??? ブロックに Gem::Package::TarInput のインスタンスを与えて評価します。
...@todo ???
ブロックに Gem::Package::TarInput のインスタンスを与えて評価します。
@param io 自身に関連付ける IO を指定します。
@param security_policy ???... -
Kernel
$ $ NR -> Integer (3013.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...