I am attempting to use regex. Here is a quick example:
#include <regex>
...
regex myRegex("^[A-Z]*");
bool match = regex_match(string("ABCDEFGAGB"), myRegex);
...This code compiles if I include the option -std=c++0x, but does not link. Is there a library that I have to specify or install? _______________________________________________ help-gplusplus mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gplusplus
