12件ヒット
[1-12件を表示]
(0.063秒)
別のキーワード
クラス
-
CSV
:: Table (12)
検索結果
-
CSV
:: Table # by _ row! -> self (18223.0) -
自身をロウモードに変更します。
...例][ruby]{
require "csv"
row1 = CSV::Row.new(["header1", "header2"], ["row1_1", "row1_2"])
row2 = CSV::Row.new(["header1", "header2"], ["row2_1", "row2_2"])
table = CSV::Table.new([row1, row2])
table # => #<CSV::Table mode:col_or_row row_count:3>
table.by_row!
table # => #<CSV::Tab......le mode:row row_count:3>
table[0] # => #<CSV::Row "header1":"row1_1" "header2":"row1_2">
table[1] # => #<CSV::Row "header1":"row2_1" "header2":"row2_2">
//}...