作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我目前有一个具有以下结构的字符串
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/
我是一名优秀的程序员,十分优秀!