468件ヒット
[1-100件を表示]
(0.038秒)
別のキーワード
ライブラリ
- csv (468)
クラス
- Array (12)
- CSV (420)
-
CSV
:: Table (24) - String (12)
キーワード
- binmode (12)
- binmode? (12)
- close (12)
-
close
_ read (12) -
close
_ write (12) - closed? (12)
- eof (12)
- eof? (12)
-
external
_ encoding (12) - fcntl (12)
- fileno (12)
- flock (12)
- flush (12)
- fsync (12)
- gets (12)
- inspect (12)
-
internal
_ encoding (12) - ioctl (12)
- isatty (12)
-
parse
_ csv (12) - path (12)
- pid (12)
- pos (12)
- pos= (12)
- readline (12)
- reopen (12)
- rewind (12)
- seek (12)
- shift (12)
- stat (12)
- sync (12)
- sync= (12)
- tell (12)
-
to
_ csv (24) -
to
_ i (12) -
to
_ io (12) -
to
_ s (12) - tty? (12)
検索結果
先頭5件
-
CSV
# to _ io -> self (27146.0) -
IO#to_io に委譲します。
...
IO#to_io に委譲します。
@see IO#to_io... -
CSV
# ioctl(cmd , arg = 0) -> Integer (27123.0) -
IO#ioctl に委譲します。
...
IO#ioctl に委譲します。
@see IO#ioctl... -
CSV
# gets -> Array | CSV :: Row (21172.0) -
String や IO をラップしたデータソースから一行だけ読み込んで フィールドの配列か CSV::Row のインスタンスを返します。
...String や IO をラップしたデータソースから一行だけ読み込んで
フィールドの配列か CSV::Row のインスタンスを返します。
データソースは読み込み用にオープンされている必要があります。
@return ヘッダを使用しない場合は......配列を返します。
ヘッダを使用する場合は CSV::Row を返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new(DATA.read)
csv.readline # => ["header1", "header2"]
csv.readline # => ["row1_1", "row1_2"]
__END__
header1,header2
row1_1,row1_2
//}... -
CSV
# readline -> Array | CSV :: Row (21172.0) -
String や IO をラップしたデータソースから一行だけ読み込んで フィールドの配列か CSV::Row のインスタンスを返します。
...String や IO をラップしたデータソースから一行だけ読み込んで
フィールドの配列か CSV::Row のインスタンスを返します。
データソースは読み込み用にオープンされている必要があります。
@return ヘッダを使用しない場合は......配列を返します。
ヘッダを使用する場合は CSV::Row を返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new(DATA.read)
csv.readline # => ["header1", "header2"]
csv.readline # => ["row1_1", "row1_2"]
__END__
header1,header2
row1_1,row1_2
//}... -
CSV
# shift -> Array | CSV :: Row (21172.0) -
String や IO をラップしたデータソースから一行だけ読み込んで フィールドの配列か CSV::Row のインスタンスを返します。
...String や IO をラップしたデータソースから一行だけ読み込んで
フィールドの配列か CSV::Row のインスタンスを返します。
データソースは読み込み用にオープンされている必要があります。
@return ヘッダを使用しない場合は......配列を返します。
ヘッダを使用する場合は CSV::Row を返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new(DATA.read)
csv.readline # => ["header1", "header2"]
csv.readline # => ["row1_1", "row1_2"]
__END__
header1,header2
row1_1,row1_2
//}... -
CSV
# reopen(io) -> self (21124.0) -
IO#reopen に委譲します。
...
IO#reopen に委譲します。
@see IO#reopen... -
CSV
# seek(offset , whence = IO :: SEEK _ SET) -> 0 (21124.0) -
IO#seek に委譲します。
...
IO#seek に委譲します。
@see IO#seek... -
CSV
# flock(operation) -> 0 | false (21101.0) -
File#flock に委譲します。
File#flock に委譲します。 -
CSV
# rewind -> 0 (21087.0) -
IO#rewind に似ています。CSV#lineno を 0 にします。
...
IO#rewind に似ています。CSV#lineno を 0 にします。
//emlist[例][ruby]{
require "csv"
csv = CSV.new("header1,header2\nrow1_1,row1_2")
csv.lineno # => 0
csv.readline
csv.lineno # => 1
csv.rewind
csv.lineno # => 0
//}
@see IO#rewind...