るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.059秒)
トップページ > クエリ:IO.new[x] > クエリ:gets[x] > クエリ:content[x] > クエリ:table[x] > クエリ:print[x] > クエリ:allocation_sourcefile[x] > クラス:CSV::Table[x]

別のキーワード

  1. rss content
  2. rss content=
  3. _builtin gets
  4. irb/input-method gets
  5. net/imap content_id

ライブラリ

キーワード

検索結果

CSV::Table#to_csv(options = Hash.new) -> String (209.0)

CSV の文字列に変換して返します。

...ションに :write_headers =>
false を指定するとヘッダを出力しません。

//emlist[][ruby]{
require 'csv'
csv = CSV.new("a,b,c\n1,2,3", headers: true)
table
= csv.read
p table.to_csv # => "a,b,c\n1,2,3\n"
p table.to_csv(write_headers: false) # => "1,2,3\n"
//}...

CSV::Table#to_s(options = Hash.new) -> String (209.0)

CSV の文字列に変換して返します。

...ションに :write_headers =>
false を指定するとヘッダを出力しません。

//emlist[][ruby]{
require 'csv'
csv = CSV.new("a,b,c\n1,2,3", headers: true)
table
= csv.read
p table.to_csv # => "a,b,c\n1,2,3\n"
p table.to_csv(write_headers: false) # => "1,2,3\n"
//}...