12件ヒット
[1-12件を表示]
(0.049秒)
別のキーワード
ライブラリ
- csv (12)
クラス
-
CSV
:: Table (12)
検索結果
-
CSV
:: Table # by _ row! -> self (18221.0) -
自身をロウモードに変更します。
...//emlist[例][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 # =>...