当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby CSV.read用法及代码示例


本文简要介绍ruby语言中 CSV.read 的用法。

用法

read(source, **options) → array_of_arrays
read(source, headers: true, **options) → csv_table

使用给定的 options(参见 CSV.open )打开给定的 source,读取源(参见 CSV#read ),并返回结果,该结果将是数组数组或 CSV::Table

没有标题:

string = "foo,0\nbar,1\nbaz,2\n"
path = 't.csv'
File.write(path, string)
CSV.read(path) # => [["foo", "0"], ["bar", "1"], ["baz", "2"]]

带标题:

string = "Name,Value\nfoo,0\nbar,1\nbaz,2\n"
path = 't.csv'
File.write(path, string)
CSV.read(path, headers: true) # => #<CSV::Table mode:col_or_row row_count:4>

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 CSV.read。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。