Sha256: 3a93dae0e11faa024e6f99c3f0ffe804f16dc94eedf785417e81bb8a56ea1a01
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
====== Option +col_sep+ Specifies the \String field separator to be used for both parsing and generating. The \String will be transcoded into the data's \Encoding before use. Default value: CSV::DEFAULT_OPTIONS.fetch(:col_sep) # => "," (comma) For examples in this section: ary = ['a', 'b', 'c'] Using the default: str = CSV.generate_line(line) str # => "a,b,c\n" ary = CSV.parse_line(str) ary # => ["a", "b", "c"] Using +:+ (colon): col_sep = ':' str = CSV.generate_line(ary, col_sep: col_sep) str # => "a:b:c\n" ary = CSV.parse_line(str, col_sep: col_sep) ary # => [["a", "b", "c"]] Using +::+ (two colons): col_sep = '::' str = CSV.generate_line(ary, col_sep: col_sep) str # => "a::b::c\n" ary = CSV.parse_line(str, col_sep: col_sep) ary # => [["a", "b", "c"]] --- Raises an exception if given the empty \String: col_sep = '' # Raises ArgumentError (:col_sep must be 1 or more characters: "") CSV.parse_line("a:b:c\n", col_sep: col_sep) Raises an exception if the given value is not String-convertible: col_sep = BasicObject.new # Raises NoMethodError (undefined method `to_s' for #<BasicObject:>) CSV.generate_line(line, col_sep: col_sep) # Raises NoMethodError (undefined method `to_s' for #<BasicObject:>) CSV.parse(str, col_sep: col_sep)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
csv-3.1.5 | doc/col_sep.rdoc |