768件ヒット
[601-700件を表示]
(0.071秒)
ライブラリ
- csv (768)
キーワード
- << (12)
-
add
_ row (12) - binmode (12)
- binmode? (12)
- close (12)
-
close
_ read (12) -
close
_ write (12) - closed? (12)
-
col
_ sep (12) - convert (36)
- converters (12)
- each (12)
- encoding (12)
- eof (12)
- eof? (12)
-
external
_ encoding (12) - fcntl (12)
-
field
_ size _ limit (12) - fileno (12)
- flock (12)
- flush (12)
-
force
_ quotes? (12) - fsync (12)
- gets (12)
-
header
_ convert (36) -
header
_ converters (12) -
header
_ row? (12) - headers (12)
- inspect (12)
-
internal
_ encoding (12) - ioctl (12)
- isatty (12)
- lineno (12)
- path (12)
- pid (12)
- pos (12)
- pos= (12)
- puts (12)
-
quote
_ char (12) - read (12)
- readline (12)
- readlines (12)
- reopen (12)
-
return
_ headers? (12) - rewind (12)
-
row
_ sep (12) - seek (12)
- shift (12)
-
skip
_ blanks? (12) - stat (12)
- string (12)
- sync (12)
- sync= (12)
- tell (12)
-
to
_ i (12) -
to
_ io (12) - truncate (12)
- tty? (12)
-
unconverted
_ fields? (12) -
write
_ headers? (12)
検索結果
先頭5件
-
CSV
# seek(offset , whence = IO :: SEEK _ SET) -> 0 (2.0) -
IO#seek に委譲します。
IO#seek に委譲します。
@see IO#seek -
CSV
# shift -> Array | CSV :: Row (2.0) -
String や IO をラップしたデータソースから一行だけ読み込んで フィールドの配列か CSV::Row のインスタンスを返します。
...ールドの配列か 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
# skip _ blanks? -> bool (2.0) -
真である場合は、空行を読み飛ばします。
...[例][ruby]{
require "csv"
csv = CSV.new("header1,header2\n\nrow1_1,row1_2")
csv.skip_blanks? # => false
csv.read # => [["header1", "header2"], [], ["row1_1", "row1_2"]]
csv = CSV.new("header1,header2\n\nrow1_1,row1_2", skip_blanks: true)
csv.skip_blanks? # => true
csv.read # => [["......header1", "header2"], ["row1_1", "row1_2"]]
//}
@see CSV.new... -
CSV
# stat -> File :: Stat (2.0) -
IO#stat に委譲します。
IO#stat に委譲します。
@see IO#stat -
CSV
# string -> String (2.0) -
StringIO#string に委譲します。
StringIO#string に委譲します。
@see StringIO#string -
CSV
# sync -> bool (2.0) -
IO#sync に委譲します。
IO#sync に委譲します。
@see IO#sync -
CSV
# sync=(newstate) (2.0) -
IO#sync= に委譲します。
IO#sync= に委譲します。
@see IO#sync= -
CSV
# tell -> Integer (2.0) -
IO#pos, IO#tell に委譲します。
IO#pos, IO#tell に委譲します。
@see IO#pos, IO#tell -
CSV
# to _ i -> Integer (2.0) -
IO#fileno, IO#to_i に委譲します。
IO#fileno, IO#to_i に委譲します。