Created
June 10, 2012 07:36
-
-
Save igaiga/2904391 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Excelファイルを読み書きするgem "spreadsheet" sample code | |
# gem install spreadsheet | |
require "spreadsheet" | |
# 新規作成 | |
book = Spreadsheet::Workbook.new | |
sheet = book.create_worksheet | |
sheet[0,0] = "testing..." | |
book.write("example.xls") | |
# 既存ファイルのopen | |
book = Spreadsheet.open("example.xls") | |
sheet = book.worksheet(0) | |
p str = sheet[0,0] | |
sheet[1,0] = "hello" | |
book.write("example2.xls") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment