Splitting a string by a character(按字符拆分字符串)
问题描述
我知道这是一个很简单的问题,但我只想一劳永逸地解决它
I know this is a quite easy problem but I just want to solve it for myself once and for all
我只想使用字符作为拆分分隔符将字符串拆分为数组.(很像 C# 著名的 .Split() 函数.我当然可以应用蛮力方法,但我想知道还有什么比这更好的方法.
I would simply like to split a string into an array using a character as the split delimiter. (Much like the C#'s famous .Split() function. I can of course apply the brute-force approach but I wonder if there anything better than that.
到目前为止,我已经搜索过并且可能最接近的解决方案是使用 strtok(),但是由于它不方便(将您的字符串转换为字符数组等)我不喜欢使用它.有没有更简单的方法来实现这一点?
So far the I've searched and probably the closest solution approach is the usage of strtok(), however due to it's inconvenience(converting your string to a char array etc.) I do not like using it. Is there any easier way to implement this?
注意:我想强调这一点,因为人们可能会问为什么蛮力不起作用".我的蛮力解决方案是创建一个循环,并在其中使用 substr() 函数.但是,由于它需要 起点 和长度,因此当我想拆分日期时它会失败.因为用户可能将其输入为 7/12/2012 或 07/3/2011,在计算/"分隔符的下一个位置之前,我可以真正知道长度.
Note: I wanted to emphasize this because people might ask "How come brute-force doesn't work". My brute-force solution was to create a loop, and use the substr() function inside. However since it requires the starting point and the length, it fails when I want to split a date. Because user might enter it as 7/12/2012 or 07/3/2011, where I can really tell the length before calculating the next location of '/' delimiter.
推荐答案
使用向量、字符串和字符串流.有点麻烦,但它确实有效.
Using vectors, strings and stringstream. A tad cumbersome but it does the trick.
#include <string>
#include <vector>
#include <sstream>
std::stringstream test("this_is_a_test_string");
std::string segment;
std::vector<std::string> seglist;
while(std::getline(test, segment, '_'))
{
seglist.push_back(segment);
}
这会产生与内容相同的向量
Which results in a vector with the same contents as
std::vector<std::string> seglist{ "this", "is", "a", "test", "string" };
这篇关于按字符拆分字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:按字符拆分字符串
基础教程推荐
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 初始化列表*参数*评估顺序 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- CString 到 char* 2021-01-01
