Regular Expression in C++

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • praveenholal
    New Member
    • Feb 2007
    • 19

    #1

    Regular Expression in C++

    Hi Friends,

    I wanted to know whether there is any kind of support i.e, BuiltIn libraries in C++ to implement the regular expressions. The library should work on all types (Linux Based) Operating systems. I am working on Fedora Core 5 at present .

    I am writing my own code in C++ for Regular Expressions right now but that is very length process and is consuming a lot of time.

    Please help me in finding a Better Solution to this Problem


    Thanks in Advance
    Praveen
  • sicarie
    Recognized Expert Specialist
    • Nov 2006
    • 4677

    #2
    Originally posted by praveenholal
    Hi Friends,

    I wanted to know whether there is any kind of support i.e, BuiltIn libraries in C++ to implement the regular expressions. The library should work on all types (Linux Based) Operating systems. I am working on Fedora Core 5 at present .

    I am writing my own code in C++ for Regular Expressions right now but that is very length process and is consuming a lot of time.

    Please help me in finding a Better Solution to this Problem


    Thanks in Advance
    Praveen
    Is something like this what you are looking for?

    (PS - that was the second response to a google search of 'c++ regex' (and links back to the first response), just for future reference - if that's not what you are looking for, maybe something in that search is...)

    Comment

    • praveenholal
      New Member
      • Feb 2007
      • 19

      #3
      Originally posted by sicarie
      Is something like this what you are looking for?

      (PS - that was the second response to a google search of 'c++ regex' (and links back to the first response), just for future reference - if that's not what you are looking for, maybe something in that search is...)

      Thanks a lot. I got solution to my problem . I installed boost library and its working on my system

      Comment

      • sicarie
        Recognized Expert Specialist
        • Nov 2006
        • 4677

        #4
        Originally posted by praveenholal
        Thanks a lot. I got solution to my problem . I installed boost library and its working on my system
        Glad to hear it - please, post again if you get stuck.

        Comment

        Working...