I am porting Java code in C++ where Java code has been using Pattern class to parse regular expression. Anyone know any library or open source in C++ for regular expressions as replacement for Java?
I am looking on Linux.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Standard library has regex functionality included. Boost libraries are generally regarded as of very high quality. Boost.regex library deals with regular expressions. You can use just that one, and don’t have to include all separate Boost libraries.