Giter Club home page Giter Club logo

shrdlu's Introduction

shrdlu

Experiments in reading CSV documents.

Install

Clone the repo and run make . That will build and run the tests.

Usage

Shrdlu breaks down the problem of parsing CSV data into three stages.

  1. A field parser, which parses single fields of a CSV document.

  2. Using the Field parser to make a record parser, which parses one CSV record.

  3. Using the record parser to make a document parser, which reads an entire CSV document.

Shrdlu is easy to use. Just do extractions from an input stream into one of the parser components, like so:

// Read one field.
Field_parser fp;
input_stream >> fp;
// now do something with fp or with fp.get_field().

// Read one record.
Record_parser rp;
input_sream >> rp;
// do something with rp or with rp.get_record();

// Read one document.
Document_parser dp;
input_stream >> dp;
// do something with dp or with dp.get_document();

Look in test.cc for details.

shrdlu's People

Contributors

tedszy avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.