Sha256: 17187444c11022a0563161f85131bc3d6f2c53a0e8c2a7797cbc121a300d8053
Contents?: true
Size: 363 Bytes
Versions: 20
Compression:
Stored size: 363 Bytes
Contents
====== Option +strip+ Specifies the boolean value that determines whether whitespace is stripped from each input field. Default value: CSV::DEFAULT_OPTIONS.fetch(:strip) # => false With default value +false+: ary = CSV.parse_line(' a , b ') ary # => [" a ", " b "] With value +true+: ary = CSV.parse_line(' a , b ', strip: true) ary # => ["a", "b"]
Version data entries
20 entries across 20 versions & 4 rubygems