这将在 Ruby 中完成。我提供了迄今为止我所尝试的内容。
我很好奇是否可以迭代一个 excel 工作簿(所以它将是多张工作表)并且基本上索引/记录所有内容所在的位置。假设我有一本 10 张的工作簿。我希望它抓取第一张纸,记录该纸的名称,然后移动到第一个单元格并开始索引(不确定单词是否正确)该纸上的数据。它将记录单元格位置,因此对于第一个 (1,A) 和其中的数据。我正在尝试将数据输出为诸如 CSV 文件之类的格式:
我编写的一些代码基本上只是遍历工作簿中的每个工作表和每个单元格(删除空格)并获取其数据并放入 CSV ......没有工作表名称或单元格编号存在。我正在使用 roo 和 csv 宝石:
require 'rubygems'
require 'roo'
#Classes Used
class ArrayIterator
def initialize(array)
@array = array
@index = 0
end
def has_next?
@index < @array.length
end
def item
@array[@index]
end
def next_item
value = @array[@index]
@index += 1
value
end
end
#Open up files to compare
w1 = Excelx.new ( "C:/Ruby/myworkbook.xlsx" )
$values = Array.new
i = 0.to_i
# Continue until no worksheets left
num_sheets = w1.sheets().size
while (i < num_sheets)
puts "i is currently : #{i}"
puts "length of sheet array is : #{num_sheets}"
#Grab first sheet of each workbook
w1.default_sheet = w1.sheets[i]
1.upto(w1.last_row) do | row |
1.upto(w1.last_column) do | column |
string = w1.cell(row, column).to_s
if (string.strip.empty?)
puts "Whitespace!"
else
$values << string
end
end
end
i = i + 1.to_i
end
count = 0.to_i
CSV.open('C:/Ruby/results.csv', "w") do |csv|
csv << ['String']
i = ArrayIterator.new($values)
while i.has_next?
csv << [i.next_item]
count += 1
end
end