RubyXL で本を読もうとしていますが、常に次のような 16 進コードを返します。
#<RubyXL::Cell:0x007f8b597c4390>
workbook = RubyXL::Parser.parse("issues.xlsx")
worksheet = workbook[0]
worksheet.extract_data # Produces a simple rectangular array that consists only of cell values (rather than the Cell objects)
worksheet = workbook[0]
#worksheet.sheet_data[0][0] # Returns cell A1 in the worksheet
logger.info worksheet[17][4]
セル内の文字列テキストを返す必要がありますか?