LoginSignup
34
29

More than 5 years have passed since last update.

RubyでCSVをShift-JIS形式で作成する

Last updated at Posted at 2012-12-26
CSV.open("./shift_jis.csv", "w", :encoding => "SJIS") do |writer|
  writer << ["こんにちは", "どうもどうも"]
end

:encodingを指定していなかったらutf8

34
29
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
34
29