2

我目前正在使用以下代码构建文件系统爬虫:

require 'find'
require 'spreadsheet'
Spreadsheet.client_encoding = 'UTF-8'

count = 0

Find.find('/Users/Anconia/crawler/') do |file|           
  if file =~ /\b.xls$/                                            # check if filename ends in desired format
    contents =  Spreadsheet.open(file).worksheets
    contents.each do |row|
      if row =~ /regex/
        puts file
        count += 1
      end
    end
  end
end

puts "#{count} files were found"

我收到以下输出: 0 files were found

正则表达式经过测试并且正确 - 我目前在另一个有效的爬虫中使用它。

的输出row.inspect

#<Spreadsheet::Excel::Worksheet:0x003ffa5d418538 @row_addresses= @default_format= @selected= @dimensions= @name=Sheet1 @workbook=#<Spreadsheet::Excel::Workbook:0x007ff4bb147140> @rows=[] @columns=[] @links={} @merged_cells=[] @protected=false @password_hash=0 @changes={} @offsets={} @reader=#<Spreadsheet::Excel::Reader:0x007ff4bb1f3b98> @ole=#<Ole::Storage::RangesIOMigrateable:0x007ff4bb126fa8> @offset=15341 @guts={} @rows[3]>- 当然没有什么可以迭代的。

4

2 回答 2

0

正如 Diego 提到的,我应该一直在迭代内容 - 非常感谢您的澄清!还应注意,row必须在任何迭代发生之前将其转换为字符串。

于 2012-12-26T23:30:35.580 回答
0

尝试这个:

content = Spreadsheet.open(file)
sheet = content.worksheet 0 
sheet.each do |row|
...
于 2012-12-26T23:17:37.313 回答