Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

grahame/rust-csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note

This is for a truly ancient version of Rust. I may come back and port to modern Rust (or would eagerly take a pull request doing so). Right now, this isn't in a working state.

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