672件ヒット
[1-100件を表示]
(0.169秒)
ライブラリ
- csv (672)
キーワード
- << (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) - gets (12)
-
header
_ convert (36) -
header
_ converters (12) -
header
_ row? (12) - headers (12)
- inspect (12)
-
internal
_ encoding (12) - ioctl (12)
- lineno (12)
- pid (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)
- stat (12)
- sync= (12)
- tell (12)
-
to
_ i (12) -
to
_ io (12) - truncate (12)
-
unconverted
_ fields? (12) -
write
_ headers? (12)
検索結果
先頭5件
-
CSV
# converters -> Array (12202.0) -
現在の変換器のリストを返します。
...在の変換器のリストを返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new("header1,header2\nrow1_1,row1_2", converters: CSV::Converters.keys)
csv.converters # => [:integer, :float, :integer, :float, :date, :date_time, :date_time, :integer, :float]
//}
@see CSV::Converters... -
CSV
# encoding -> Encoding (6202.0) -
読み書きするときに使用するエンコーディングを返します。
...読み書きするときに使用するエンコーディングを返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new("header1,header2\nrow1_1,row1_2", headers: true)
csv.encoding # => #<Encoding:UTF-8>
//}... -
CSV
# seek(offset , whence = IO :: SEEK _ SET) -> 0 (6202.0) -
IO#seek に委譲します。
...IO#seek に委譲します。
@see IO#seek... -
CSV
# binmode -> self (6102.0) -
IO#binmode に委譲します。
...IO#binmode に委譲します。
@see IO#binmode... -
CSV
# binmode? -> bool (6102.0) -
IO#binmode? に委譲します。
...IO#binmode? に委譲します。
@see IO#binmode?... -
CSV
# close -> nil (6102.0) -
IO#close に委譲します。
...IO#close に委譲します。
@see IO#close... -
CSV
# close _ read -> nil (6102.0) -
IO#close_read に委譲します。
...IO#close_read に委譲します。
@see IO#close_read... -
CSV
# close _ write -> nil (6102.0) -
IO#close_write に委譲します。
...IO#close_write に委譲します。
@see IO#close_write... -
CSV
# closed? -> bool (6102.0) -
IO#closed? に委譲します。
...IO#closed? に委譲します。
@see IO#closed?...