gpt4 book ai didi

c++ - 在 C++ 中使用单词作为分隔符拆分字符串

转载 作者:太空宇宙 更新时间:2023-11-04 11:59:31 30 4
gpt4 key购买 nike

我有一个非常非常长的字符串!它中间有单词“post”,我想使用“post”作为分隔符来标记字符串!我遇到了 boost 库来使用 split_regex 或类似的东西来做到这一点!如果有人知道一种真正有效的方法,请告诉我

-谢谢

最佳答案

你可以看看Boost String Algorithms Library

#include <string>
#include <vector>
#include <algorithm>
#include <iterator>
#include <iostream>
#include <boost/algorithm/string/iter_find.hpp>
#include <boost/algorithm/string/finder.hpp>
int main()
{
std::string input = "msg1foomsg2foomsg3";

std::vector<std::string> v;
iter_split(v, input, boost::algorithm::first_finder("foo"));

copy(v.begin(), v.end(), std::ostream_iterator<std::string>(std::cout, " "));
std::cout << std:endl;
}

关于c++ - 在 C++ 中使用单词作为分隔符拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14719712/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com