るりまサーチ

最速Rubyリファレンスマニュアル検索!
468件ヒット [101-200件を表示] (0.031秒)
トップページ > クエリ:IO[x] > クエリ:CSV[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. io popen
  2. io pipe
  3. io each
  4. io each_line
  5. io readlines

ライブラリ

クラス

キーワード

検索結果

<< < 1 2 3 4 ... > >>

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 に委譲します。...
<< < 1 2 3 4 ... > >>