468件ヒット
[101-200件を表示]
(0.031秒)
別のキーワード
ライブラリ
- 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)
検索結果
-
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... -
CSV
# eof -> bool (21045.0) -
IO#eof, IO#eof? に委譲します。
...
IO#eof, IO#eof? に委譲します。
@see IO#eof, IO#eof?... -
CSV
# eof? -> bool (21045.0) -
IO#eof, IO#eof? に委譲します。
...
IO#eof, IO#eof? に委譲します。
@see IO#eof, IO#eof?... -
CSV
# isatty -> bool (21045.0) -
IO#isatty, IO#tty? に委譲します。
...
IO#isatty, IO#tty? に委譲します。
@see IO#isatty, IO#tty?... -
CSV
# pos -> Integer (21045.0) -
IO#pos, IO#tell に委譲します。
...
IO#pos, IO#tell に委譲します。
@see IO#pos, IO#tell... -
CSV
# tell -> Integer (21045.0) -
IO#pos, IO#tell に委譲します。
...
IO#pos, IO#tell に委譲します。
@see IO#pos, IO#tell... -
CSV
# tty? -> bool (21045.0) -
IO#isatty, IO#tty? に委譲します。
...
IO#isatty, IO#tty? に委譲します。
@see IO#isatty, IO#tty?... -
CSV
# inspect -> String (21037.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
# fileno -> Integer (21033.0) -
IO#fileno, IO#to_i に委譲します。
...
IO#fileno, IO#to_i に委譲します。...