Class: String
- Inherits:
- 
      Object
      
        - Object
- String
 
- Defined in:
- lib/csv.rb
Overview
:nodoc:
Instance Method Summary collapse
- 
  
    
      #parse_csv(options = Hash.new)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Equivalent to CSV::parse_line(self, options). 
Instance Method Details
#parse_csv(options = Hash.new) ⇒ Object
Equivalent to CSV::parse_line(self, options)
"CSV,data".parse_csv
  #=> ["CSV", "data"]
| 2378 2379 2380 | # File 'lib/csv.rb', line 2378 def parse_csv( = Hash.new) CSV.parse_line(self, ) end |