Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下は私のルビースクリプトです
require "rubygems" require 'csv' a = Array.new CSV.foreach("p34n234.csv") do |row| a << row end print a
私がやりたいことは、最後にhtmlファイルを生成してそれに配列を出力したいということです。
私は理にかなっていると思います。
ありがとう
PS配列を.htmlファイルに表示したいだけです。ここには派手なものはありません:)
こんなことをしているとは・・・。
print "HTTP/1.0 200 OK\r\n" print "Content-type: text/html\r\n\r\n" print "<html><body>#{your_array}</body></html>\r\n"