need help with my lexer.

Pages: 12
closed account (Dy7SLyTq)
ah ok... and thanks andy. i decided not to go with boost however, because it was giving me lots of errors that i spent hours and couldnt figure out. i found one on code.google.com that works quite well however
closed account (S6k9GNh0)
Just for reference sake, you probably shouldn't use a regex parser to create a parser. It's slow and rather innefficient.

Flex uses regular expressions to create a parser but not during runtime (and in a less verbose manner than C++ can do).
Last edited on
Topic archived. No new replies allowed.
Pages: 12