Skip to content

brson/rust-csv

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSV: parser for RFC 4180 CSV files

This package implements a parser for the RFC 4180 CSV file format.

API

use csv;
import csv::rowiter;

fn main () {
    let reader = csv::new_reader(result::get(io::file_reader("/path/to/file")), ',', '"');
    let mut row = [];
    while reader.readrow(row) {
        row.iter {|col|
            io::println(col)
        }
    }
}

See the test module in csv.rs for more examples.

About

CSV implementation for Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 98.4%
  • Python 1.2%
  • Shell 0.4%