396件ヒット
[1-100件を表示]
(0.189秒)
ライブラリ
- csv (396)
キーワード
- binmode (12)
- binmode? (12)
- close (12)
-
close
_ read (12) -
close
_ write (12) -
col
_ sep (12) - convert (24)
-
field
_ size _ limit (12) -
header
_ convert (24) - headers (12)
-
internal
_ encoding (12) - ioctl (12)
- isatty (12)
- path (12)
- pid (12)
- pos (12)
-
quote
_ char (12) - readline (12)
- reopen (12)
- rewind (12)
-
row
_ sep (12) - seek (12)
- shift (12)
-
skip
_ blanks? (12) - stat (12)
- string (12)
- tell (12)
-
to
_ io (12) - tty? (12)
-
unconverted
_ fields? (12) -
write
_ headers? (12)
検索結果
先頭5件
-
CSV
# internal _ encoding -> Encoding | nil (12308.0) -
IO#internal_encoding に委譲します。
...
IO#internal_encoding に委譲します。
@see IO#internal_encoding... -
CSV
# string -> String (6208.0) -
StringIO#string に委譲します。
...StringIO#string に委譲します。
@see StringIO#string... -
CSV
# binmode -> self (6108.0) -
IO#binmode に委譲します。
...
IO#binmode に委譲します。
@see IO#binmode... -
CSV
# binmode? -> bool (6108.0) -
IO#binmode? に委譲します。
...
IO#binmode? に委譲します。
@see IO#binmode?... -
CSV
# close _ write -> nil (6108.0) -
IO#close_write に委譲します。
...
IO#close_write に委譲します。
@see IO#close_write... -
CSV
# field _ size _ limit -> Integer (6108.0) -
フィールドサイズの最大値を返します。
...。
//emlist[例][ruby]{
require "csv"
csv = CSV.new(DATA)
csv.field_size_limit # => nil
p csv.read # => [["a", "b"], ["\n2\n2\n", ""]]
DATA.rewind
csv = CSV.new(DATA, field_size_limit: 4)
p csv.field_size_limit # => 4
csv.read # => #<CSV::MalformedCSVError: Field size exceeded on line 2.>
__END......__
"a","b"
"
2
2
",""
//}
@see CSV.new... -
CSV
# ioctl(cmd , arg = 0) -> Integer (6108.0) -
IO#ioctl に委譲します。
...
IO#ioctl に委譲します。
@see IO#ioctl... -
CSV
# isatty -> bool (6108.0) -
IO#isatty, IO#tty? に委譲します。
...
IO#isatty, IO#tty? に委譲します。
@see IO#isatty, IO#tty?... -
CSV
# pid -> Integer | nil (6108.0) -
IO#pid に委譲します。
...
IO#pid に委譲します。
@see IO#pid...