C++/STL string: How to mimic regex like function with wildcards ?
- by Arman
Hello,
I would like to compare 4 character string using wildcards.
For example:
std::vector<std::string> wildcards[]=
{"H? ", "RH? ", "H[0-5] "};
/*in the last one I need to check if string is "H0 ",..., and "H5 " */
Is it possible to manage to realize only by STL?
Thanks,
Arman.