12345678910111213141516
#include <iostream> #include <regex> int main(int argc, char **argv){ std::regex exportRegex ("(\\d+)\\D+\\d+\\D+\\S+\\s+(.+)"); std::cmatch exportMatcher; std::regex_match(" 1 0 000E1AD0 ??0AESCrypto@@QAE@ABV0@@Z", exportMatcher, exportRegex ); for( int i = 0; i < exportMatcher.size(); i++ ) std::cout << "Match[" << i << "]: " << exportMatcher[i] << std::endl; system("pause"); return 0; }