Click here to Skip to main content
15,885,757 members
Articles / Programming Languages / C
Article

Parse date time string with spirit

Rate me:
Please Sign up or sign in to vote.
2.00/5 (5 votes)
19 Mar 2008CPOL 28.2K   128   7   2
A sample show how to parse date with boost spirit framework

Introduction

This article include a sample show how to use boost spirit framework parse a date time string like "1999-01-20T00:01:22".

Background

The XML schema define the date time format like this "2000-01-30T00:10:20+1".

Using the code

First create your parser

struct myparser: public grammar<myparser>
{
  template <typename ScannerT>
  struct definition
  {
    definition(myparser const& self)
    {
      first = int_p[assign(self.date_.year_)] >> "-" >> int_p[assign(self.date_.month_)] 
      >> "-" >> int_p[assign(self.date_.day_)] >> "T" >> int_p[assign(self.date_.hour_)] 
      >> ":" >> int_p[assign(self.date_.minute_)] >> ":" >> int_p[assign(self.date_.second_)] ;
    }
    rule<ScannerT> first;
    rule<ScannerT> const&
    start() const { return first; }
  };
  myparser(date& d):date_(d){};
  date& date_;
};        

Then invoke the parser:

bool parse_date(char const* str, date& d)
{
  myparser p(d);
  return parse(str, p).full;
}      

Points of Interest

This parser can be improved to support more flexible format

History

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
China China
Programmer live in china.
Interesting with knowledge management.

My home page: http://herosys.net

Comments and Discussions

 
QuestionOverkill? Pin
PatLeCat20-Mar-08 3:05
PatLeCat20-Mar-08 3:05 
AnswerRe: Overkill? Pin
ComaWhite8616-Nov-08 10:33
ComaWhite8616-Nov-08 10:33 
does it really matter? its the point of it, to show how spirit can be done and how to use it. not whether it is overkill or not.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.