在 C++ 中将字符串转换为整数数组
本文将介绍有关如何在 C++ 中将字符串转换为整数数组的多种方法。
使用 std::getline
和 std::stoi
函数在 C++ 中将 string
转换为 int
数组
std::stoi
用于将字符串值转换为带符号的整数,它采用一个类型为 std::string
的强制性参数。可选地,该函数可以接受 2 个附加参数,其中第一个可用于存储最后一个未转换字符的索引。第三个参数可以选择指定输入的数字基数。注意,我们假设用逗号分隔的数字作为输入字符串,例如 .csv
文件。因此,我们使用 getline
函数来解析每个数字,然后将该值传递给 stoi
。通过在每次迭代中调用 push_back
方法,我们还将每个数字存储在 std::vector
容器中。
#include <iostream>
#include <vector>
#include <sstream>
#include <iterator>
using std::cout;
using std::cerr;
using std::endl;
using std::string;
using std::vector;
using std::stringstream;
using std::stoi;
int main(int argc, char *argv[]) {
string text = "125, 44, 24, 5543, 111";
vector<int> numbers;
int num;
stringstream text_stream(text);
string item;
while (std::getline(text_stream, item, ',')) {
numbers.push_back(stoi(item));
}
for (auto &n : numbers) {
cout << n << endl;
}
exit(EXIT_SUCCESS);
}
输出:
125
44
24
5543
111
在 C++ 中使用 std::string::find
和 std::stoi
函数将 string
转换为 int
数组
另外,我们可以利用 std::string
类的 find
内置方法来检索逗号分隔符的位置,然后调用 substr
函数来获取数字。然后,将 substr
结果传递到 stoi
,该 stoi
本身链接到 push_back
方法,以将数字存储到 vector
中。请注意,while
循环后有一行是提取序列中最后一个数字所必需的。
#include <iostream>
#include <vector>
#include <sstream>
#include <iterator>
using std::cout;
using std::cerr;
using std::endl;
using std::string;
using std::vector;
using std::stringstream;
using std::stoi;
int main(int argc, char *argv[]) {
string text = "125, 44, 24, 5543, 111";
vector<int> numbers;
size_t pos = 0;
while ((pos = text.find(',')) != string::npos) {
numbers.push_back(stoi(text.substr(0, pos)));
text.erase(0, pos + 1);
}
numbers.push_back(stoi(text.substr(0, pos)));
for (auto &n : numbers) {
cout << n << endl;
}
exit(EXIT_SUCCESS);
}
输出:
125
44
24
5543
111
使用 std::copy
和 std::remove_if
函数在 C++ 中将 string
转换为 int
数组
提取整数的另一种方法是将 std::copy
算法与 std::istream_iterator
和 std::back_inserter
结合使用。此解决方案将字符串值存储到向量
中,并将其输出到 cout
流,但是可以轻松添加 std::stoi
函数以将每个元素转换为 int
值。请注意,以下示例代码仅将数字存储为字符串值。
#include <iostream>
#include <vector>
#include <sstream>
#include <iterator>
using std::cout;
using std::cerr;
using std::endl;
using std::string;
using std::vector;
using std::stringstream;
using std::stoi;
int main(int argc, char *argv[]) {
string text = "125, 44, 24, 5543, 111";
vector<string> nums;
std::istringstream iss(text);
copy(std::istream_iterator<string>(iss),
std::istream_iterator<string>(),
std::back_inserter(nums));
for (auto &n : nums) {
n.erase(std::remove_if(n.begin(), n.end(), ispunct), n.end());
cout << n << endl;
}
exit(EXIT_SUCCESS);
}
输出:
125
44
24
5543
111
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组