gpt4 book ai didi

c++ - 如何从右手边到左手边使用substr?如何将每 8 个字符从字符串转换为 int?

转载 作者:行者123 更新时间:2023-11-28 02:30:07 25 4
gpt4 key购买 nike

我有这个代码:

#include<iostream>
#include<string>
using namespace std;
int main()
{
int i=o;
string str="12345678910111213141516171819202122232425262728293";
while(i<str.length())
{
cout<<str.substr(i,8)<<endl;
i=i+8;
return 0;
}

/我的输出是:12345678 91011121 31415161 …………我想从右到左而不是从左到右得到 8 个字符。然后,每接收到 8 个字符,需要将其插入到一个整型变量中。请问,有人可以帮忙吗?/

最佳答案

首先使用 mod % 运算符打印剩余的字符。

#include<iostream>
#include<string>
using namespace std;
int main()
{
string str="12345678910111213141516171819202122232425262728293";
std::size_t sz = str.size();
std::size_t i = 0;

if(sz % 8) {
cout<<str.substr(i, sz % 8) << ' ' ;
i += sz % 8;
}
while(i<str.length())
{
cout << str.substr(i,8) << ' ';
i = i+8;
}
cout << endl;
return 0;
}

Live demo here

现在您可以使用 std::stringstreamstd::stoi 将这些字符串转换为数字。

int strToNum(const string &str)
{
std::stringstream sstr(str);
int ret;
if( sstr >> ret ) {
return ret;
} else {
// Error handling
throw str + " is not an integer";
}
}

关于c++ - 如何从右手边到左手边使用substr?如何将每 8 个字符从字符串转换为 int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29248447/

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