我有一个电子表格(.xlsx),其中两列的标题为“拍卖状态”和“状态”;
当我运行时:
rows = sheet.parse(auction_status: 'Auction Status', status: 'Status')
两列都包含“拍卖状态”值的值。我的猜测是parse
在“拍卖状态”中找到字符串“状态”并考虑匹配。你知道如何指定我只想要parse()
参数中“状态”的完全匹配吗?
如果您需要,请询问更多信息,我试图将其缩减为仅必要的细节。
- - - 编辑 - - - -
当我尝试正则表达式时:
rows = sheet.parse(auction_status: 'Auction Status', status: /^Status$/)
我收到此错误:
NoMethodError: undefined method `split' for /^Status$/:Regexp