阅读量:0
在C++中,你可以使用std::regex
库来处理正则表达式,而strtok_r
是一个C风格的字符串分割函数
#include<iostream> #include<string> #include<vector> #include<regex> #include <cstring> int main() { std::string input = "This is a test string"; std::regex word_regex("\\w+"); // 匹配单词 std::smatch match; std::vector<std::string> words; while (std::regex_search(input, match, word_regex)) { words.push_back(match.str()); input = match.suffix().str(); } for (const auto& word : words) { std::cout<< word<< std::endl; } return 0; }
在这个例子中,我们使用了std::regex
库来匹配单词。std::regex_search
函数会在输入字符串中查找与正则表达式匹配的部分,并将匹配结果存储在std::smatch
对象中。然后,我们将匹配到的单词添加到一个std::vector<std::string>
容器中,并继续在剩余的字符串中查找匹配项。
注意:std::regex
库在某些编译器(如GCC)中可能需要额外的支持库。在使用时,请确保已经安装了相应的库。