684件ヒット
[601-684件を表示]
(0.026秒)
別のキーワード
種類
- インスタンスメソッド (420)
- 特異メソッド (240)
- 定数 (24)
ライブラリ
- csv (684)
キーワード
-
DEFAULT
_ OPTIONS (12) - VERSION (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)
- filter (36)
- flock (12)
- flush (12)
- foreach (24)
- fsync (12)
- generate (12)
-
generate
_ line (12) - gets (12)
- inspect (12)
- instance (24)
-
internal
_ encoding (12) - ioctl (12)
- isatty (12)
- new (12)
- open (48)
- parse (24)
-
parse
_ line (12) - path (12)
- pid (12)
- pos (12)
- pos= (12)
- read (12)
- readline (12)
- readlines (12)
- reopen (12)
- rewind (12)
- seek (12)
- shift (12)
- stat (12)
- sync (12)
- sync= (12)
- table (12)
- tell (12)
-
to
_ i (12) -
to
_ io (12) - tty? (12)
検索結果
先頭5件
-
CSV
# fcntl(cmd , arg = 0) -> Integer (17.0) -
IO#fcntl に委譲します。
...
IO#fcntl に委譲します。... -
CSV
# flush -> self (17.0) -
IO#flush に委譲します。
...
IO#flush に委譲します。... -
CSV
# fsync -> 0 | nil (17.0) -
IO#fsync に委譲します。
...
IO#fsync に委譲します。... -
CSV
# gets -> Array | CSV :: Row (17.0) -
String や IO をラップしたデータソースから一行だけ読み込んで フィールドの配列か CSV::Row のインスタンスを返します。
...String や IO をラップしたデータソースから一行だけ読み込んで
フィールドの配列か CSV::Row のインスタンスを返します。
データソースは読み込み用にオープンされている必要があります。
@return ヘッダを使用しない場合は......配列を返します。
ヘッダを使用する場合は CSV::Row を返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new(DATA.read)
csv.readline # => ["header1", "header2"]
csv.readline # => ["row1_1", "row1_2"]
__END__
header1,header2
row1_1,row1_2
//}... -
CSV
# readline -> Array | CSV :: Row (17.0) -
String や IO をラップしたデータソースから一行だけ読み込んで フィールドの配列か CSV::Row のインスタンスを返します。
...String や IO をラップしたデータソースから一行だけ読み込んで
フィールドの配列か CSV::Row のインスタンスを返します。
データソースは読み込み用にオープンされている必要があります。
@return ヘッダを使用しない場合は......配列を返します。
ヘッダを使用する場合は CSV::Row を返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new(DATA.read)
csv.readline # => ["header1", "header2"]
csv.readline # => ["row1_1", "row1_2"]
__END__
header1,header2
row1_1,row1_2
//}... -
CSV
# shift -> Array | CSV :: Row (17.0) -
String や IO をラップしたデータソースから一行だけ読み込んで フィールドの配列か CSV::Row のインスタンスを返します。
...String や IO をラップしたデータソースから一行だけ読み込んで
フィールドの配列か CSV::Row のインスタンスを返します。
データソースは読み込み用にオープンされている必要があります。
@return ヘッダを使用しない場合は......配列を返します。
ヘッダを使用する場合は CSV::Row を返します。
//emlist[例][ruby]{
require "csv"
csv = CSV.new(DATA.read)
csv.readline # => ["header1", "header2"]
csv.readline # => ["row1_1", "row1_2"]
__END__
header1,header2
row1_1,row1_2
//}... -
CSV
# inspect -> String (7.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:\"\\\"\">"
//}...