るりまサーチ

最速Rubyリファレンスマニュアル検索!
1542件ヒット [401-500件を表示] (0.014秒)

クラス

キーワード

検索結果

<< < ... 3 4 5 6 7 ... > >>

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=
<< < ... 3 4 5 6 7 ... > >>