views:

422

answers:

3

Is there any regular expression library that i can use with CString of vc6? Opensource/Free library is needed

+1  A: 

Boost has some support for VC6. Be prepared to fight with the compiler every step of the way though.

1800 INFORMATION
+1  A: 

I would use PCRE with adaptation for CString. It has already C++ extension for string.

PhiLho
+1  A: 

Version 3.1.3 of the Regular Expression Component Library based on boost regex supports VC6 and even version below than that.

yesraaj