1542件ヒット
[401-500件を表示]
(0.014秒)
クラス
- Array (12)
- CSV (768)
-
CSV
:: FieldInfo (72) -
CSV
:: Row (330) -
CSV
:: Table (348) - String (12)
キーワード
- << (36)
- == (24)
- [] (48)
- []= (36)
-
add
_ row (12) - binmode (12)
- binmode? (12)
-
by
_ col (12) -
by
_ col! (12) -
by
_ col _ or _ row (12) -
by
_ col _ or _ row! (12) -
by
_ row (12) -
by
_ row! (12) - close (12)
-
close
_ read (12) -
close
_ write (12) - closed? (12)
-
col
_ sep (12) - convert (36)
- converters (12)
- deconstruct (3)
-
deconstruct
_ keys (3) - delete (24)
-
delete
_ if (36) - each (48)
- empty? (24)
- encoding (12)
- eof (12)
- eof? (12)
-
external
_ encoding (12) - fcntl (12)
- field (12)
- field? (12)
-
field
_ row? (12) -
field
_ size _ limit (12) - fields (12)
- fileno (12)
- flock (12)
- flush (12)
-
force
_ quotes? (12) - fsync (12)
- gets (12)
- header (12)
- header= (12)
- header? (12)
-
header
_ convert (36) -
header
_ converters (12) -
header
_ row? (24) - headers (36)
- include? (12)
- index (24)
- index= (12)
- inspect (36)
-
internal
_ encoding (12) - ioctl (12)
- isatty (12)
- length (24)
- line (12)
- line= (12)
- lineno (12)
- mode (12)
-
parse
_ csv (12) - path (12)
- pid (12)
- pos (12)
- pos= (12)
- push (24)
- puts (12)
-
quote
_ char (12) - read (12)
- readline (12)
- readlines (12)
- reopen (12)
-
return
_ headers? (12) - rewind (12)
- row (12)
-
row
_ sep (12) - seek (12)
- shift (12)
- size (24)
-
skip
_ blanks? (12) - stat (12)
- string (12)
- sync (12)
- sync= (12)
- table (12)
- tell (12)
-
to
_ a (12) -
to
_ csv (36) -
to
_ hash (12) -
to
_ i (12) -
to
_ io (12) -
to
_ s (24) - truncate (12)
- tty? (12)
-
unconverted
_ fields? (12) -
values
_ at (24) -
write
_ headers? (12)
検索結果
先頭5件
-
CSV
# inspect -> String (3.0) -
ASCII 互換文字列で自身の情報を表したものを返します。
...ASCII 互換文字列で自身の情報を表したものを返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new("header1,header2\nrow1_1,row1_2")
csv.inspect # => "<#CSV io_type:StringIO encoding:UTF-8 lineno:0 col_sep:\",\" row_sep:\"\\n\" quote_char:\"\\\"\">"
//}... -
CSV
# internal _ encoding -> Encoding | nil (3.0) -
IO#internal_encoding に委譲します。
IO#internal_encoding に委譲します。
@see IO#internal_encoding -
CSV
# ioctl(cmd , arg = 0) -> Integer (3.0) -
IO#ioctl に委譲します。
IO#ioctl に委譲します。
@see IO#ioctl -
CSV
# isatty -> bool (3.0) -
IO#isatty, IO#tty? に委譲します。
IO#isatty, IO#tty? に委譲します。
@see IO#isatty, IO#tty? -
CSV
# lineno -> Integer (3.0) -
このファイルから読み込んだ最終行の行番号を返します。 フィールドに含まれる改行はこの値には影響しません。
...このファイルから読み込んだ最終行の行番号を返します。
フィールドに含まれる改行はこの値には影響しません。
//emlist[例][ruby]{
require "csv"
csv = CSV.new("header1,header2\nrow1_1,row1_2")
csv.lineno # => 0
csv.readline
csv.lineno # => 1
//}... -
CSV
# path -> String (3.0) -
IO#path に委譲します。
IO#path に委譲します。
@see IO#path -
CSV
# pid -> Integer | nil (3.0) -
IO#pid に委譲します。
IO#pid に委譲します。
@see IO#pid -
CSV
# pos -> Integer (3.0) -
IO#pos, IO#tell に委譲します。
IO#pos, IO#tell に委譲します。
@see IO#pos, IO#tell -
CSV
# pos=(n) (3.0) -
IO#pos= に委譲します。
IO#pos= に委譲します。
@see IO#pos=