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


Ruby Row.field用法及代码示例


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

用法

field(index)
field(header)
field(header, offset)
也别名为:[]

返回给定 indexheader 的字段值。

通过整数索引获取字段值:

source = "Name,Value\nfoo,0\nbar,1\nbaz,2\n"
table = CSV.parse(source, headers: true)
row = table[0]
row.field(0) # => "foo"
row.field(1) # => "bar"

如果 index 为负数,则从最后一列向后计数:

row.field(-1) # => "0"
row.field(-2) # => "foo"

如果 index 超出范围,则返回 nil

row.field(2) # => nil
row.field(-3) # => nil

按标题获取字段值(首先找到):

source = "Name,Name,Name\nFoo,Bar,Baz\n"
table = CSV.parse(source, headers: true)
row = table[0]
row.field('Name') # => "Foo"

通过标题获取字段值,忽略 offset 前导字段:

source = "Name,Name,Name\nFoo,Bar,Baz\n"
table = CSV.parse(source, headers: true)
row = table[0]
row.field('Name', 2) # => "Baz"

如果标头不存在,则返回 nil

相关用法


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