Hello, How to parse lists?

Jens Kallup <[email protected]>
Newsgroups gmane.comp.parsers.spirit.general
Message-ID <[email protected]>
Hello,

How to parse "parameter ccc , ccc, ggg, ddd" ? dynamical - not static!
I get success: "parameter ccc, vv vvv vvv",
and this is wrong.

TIA for help
Jens

This rule, I use, is wrong:

   symbol_def_parameter =
     (symbol_parameter >> symbol_alpha >> *(qi::char_(',') % symbol_alpha))
     ;

              symbol_alpha =
                   qi::char_("a-zA-Z_") >>
                  *qi::char_("a-zA-Z0-9_")
                  ;

symbol_parameter = no_case["parameter"];


------------------------------------------------------------------------------
The Command Line: Reinvented for Modern Developers
Did the resurgence of CLI tooling catch you by surprise?
Reconnect with the command line and become more productive. 
Learn the new .NET and ASP.NET CLI. Get your free copy!
http://sdm.link/telerik
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.