CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: OReubens

Search: Search took 1.48 seconds.

  1. Re: Regular expressions: how to get an iterator for regex_match?

    Well it's a common issue with regex...

    Regular expressions are used for describing "context-free languages with regular grammar"

    if your language grammar is irregular, or if it requires...
  2. Re: Regular expressions: how to get an iterator for regex_match?

    you might be able to get a bunch of code to work for mathematical expressions, but the language isn't regular, so it'll involve multiple regexes cascaded together somehow.

    Typically speaking,...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured