BUGS! Reads a regular expression std::string and stores it in a preprocessed format. BUGS! Calling exp() later does not work!
Based on POSIX regex functions <regex.h>, see man regex.
#include <iostream>
#include <stdexcept>
#include "drain/RegExp.h"
using namespace std;
int main(int argc, char **argv){
if (argc==1){
cout << "Usage: " << argv[0] << "<regexp> # Reports if ok as regexp\n";
cout << "Usage: " << argv[0] << "<regexp> <string> # Reports if matches\n";
cout << "Usage: " << argv[0] << "<regexp> <string> <replace> # Reports if matches\n";
cerr << "Example:\n ";
cerr << argv[0] << " '.*(data|dataset)([0-9]+)/(data|quality)([0-9]+)/?$' /dataset1/data4/quality2 \n";
cerr << argv[0] << " '([[:alpha:]]{1,3})-([[:digit:]]{1,3})$' TAV-378 \n";
cerr << argv[0] << " '^[ ]*(([-+]?[0-9]*)(\\.[0-9]+)?)([eE][-+]?[0-9]+)?[ ]*$' -123.456e+789 1357 hello \n";
return 0;
}
REG_EXTENDED;
RegExp numberCheck("[[:digit:]]");
RegExp alphaCheck("[[:alpha:]]");
RegExp nonAlphaCheck("[^[:alnum:]]");
RegExp userExp;
try {
userExp.setExpression(argv[1]);
}
catch (const exception &e) {
std::cerr << e.what() << endl;
std::cerr << "Syntax error in RegExp:" << argv[1] << std::endl;
return 1;
}
if (argc == 2){
std::cout << "RegExp OK, '" << userExp << "'\n";
return 0;
}
std::string s(argv[2]);
std::string result;
if (numberCheck.test(s)){
std::cout << "- contains digits\n";
numberCheck.replace(s, "*", result);
std::cout << " --> replace digits:\n\t" << result << '\n';
}
if (alphaCheck.test(s))
std::cout << "- contains alphabets\n";
if (nonAlphaCheck.test(s))
std::cout << "- contains non-alphanumeric chars\n";
std::cout << "Testing string '" << s << "' with RegExp='" << userExp << "'\n";
if (userExp.execute(s) != REG_NOMATCH){
std::cerr << "ACCEPTED\n";
cerr << '\t' << 0 << " ==\t " << userExp.result[0] << '\n';
for (std::size_t j = 1; j < userExp.result.size(); ++j) {
cerr << '\t' << j << " = \t'" << userExp.result[j] << "'\n";
}
std::cout << '\n';
if (argc == 4){
std::string rep(argv[3]);
std::cout << "Replace with '" << rep << "':\n";
userExp.replace(s, rep, result);
std::cout << result << '\n';
std::cout << '\n';
}
}
else
std::cerr << "REJECTED\n";
std::cout << '\n';
numberCheck.setExpression("");
numberCheck.setExpression("test");
return 0;
}
Definition: DataSelector.cpp:1277