gpt4 book ai didi

c++ - 使用 boost::is_any_of 拆分会混淆定界符 ",,"和 ","

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:19:42 25 4
gpt4 key购买 nike

我目前有一个具有以下结构的字符串

xxx,xxx,xxxxxxx,,xxxxxx,xxxx

现在我使用下面的代码

 std::vector< std::string > vct;
boost::split( vct, str, boost::is_any_of(",,") );

现在,一旦找到“,”而不是我不想要的“,,”,boost 就会拆分字符串。有什么方法可以让我明确指定只有在找到“,,”而不是“,,”时才拆分

最佳答案

is_any_of(",,") 将匹配列表中指定的任何内容。在这种情况下,,,

你要找的是沿线

boost::algorithm::split_regex( vct, str, regex( ",," ) ) ;

关于c++ - 使用 boost::is_any_of 拆分会混淆定界符 ",,"和 ",",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15748018/

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