Split a string using C++11(使用 C++11 拆分字符串)
问题描述
使用 C++11 拆分字符串的最简单方法是什么?
What would be easiest method to split a string using c++11?
我看过这篇帖子所使用的方法,但我觉得使用新标准应该有一种不那么冗长的方法.
I've seen the method used by this post, but I feel that there ought to be a less verbose way of doing it using the new standard.
我想要一个 vector
作为结果并且能够分隔单个字符.
I would like to have a vector<string>
as a result and be able to delimitate on a single character.
推荐答案
std::regex_token_iterator
基于正则表达式执行通用标记化.对单个字符进行简单拆分可能会也可能不会过度,但它有效并且不太冗长:
std::regex_token_iterator
performs generic tokenization based on a regex. It may or may not be overkill for doing simple splitting on a single character, but it works and is not too verbose:
std::vector<std::string> split(const string& input, const string& regex) {
// passing -1 as the submatch index parameter performs splitting
std::regex re(regex);
std::sregex_token_iterator
first{input.begin(), input.end(), re, -1},
last;
return {first, last};
}
这篇关于使用 C++11 拆分字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 C++11 拆分字符串
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01