CSV::StringReader (Class)

In: csv.rb
Parent: Reader

Methods

new  

Public Class methods

[Source]

# File csv.rb, line 576
    def initialize(string, col_sep = ?,, row_sep = nil)
      @col_sep = col_sep
      @row_sep = row_sep
      @dev = string
      @idx = 0
      if @dev[0, 3] == "\xef\xbb\xbf"
        @idx += 3
      end
    end

[Validate]