c++如何把string里的数字转为int型。比如123/896要转换为两个数字一百二十三和八百九
c++如何把string里的数字转为int型。比如123/896要转换为两个数字一百二十三和八百九十六...
c++如何把string里的数字转为int型。比如123/896要转换为两个数字一百二十三和八百九十六
展开
3个回答
展开全部
利用string类的查找方法int find(char c, int pos = 0) const;
找到/所在的位置,
然后使用string类的assign()方法,将123和896分开成两个string对象,
最后使用atoi()函数就可以得到整型数了。
代码示例:
string a("123/896");
string b,c;
int pos;
pos=a.find('/');
b.assign(a,0,pos);
c.assign(a,pos+1,a.length());
cout << atoi(b.c_str()) << endl;
cout << atoi(c.c_str()) << endl;
找到/所在的位置,
然后使用string类的assign()方法,将123和896分开成两个string对象,
最后使用atoi()函数就可以得到整型数了。
代码示例:
string a("123/896");
string b,c;
int pos;
pos=a.find('/');
b.assign(a,0,pos);
c.assign(a,pos+1,a.length());
cout << atoi(b.c_str()) << endl;
cout << atoi(c.c_str()) << endl;
更多追问追答
追问
如果对这个处理的话是看成一百二十三处理吗
追答
atoi(b.c_str())的值就是一百二十三,是个整数
展开全部
大致2种方法吧
1. c++中string到int的转换
1) 在C标准库里面,使用atoi:
#include <cstdlib>
#include <string>
std::string text = "152";
int number = std::atoi( text.c_str() );
if (errno == ERANGE) //可能是std::errno
{
//number可能由于过大或过小而不能完全存储
}
else if (errno == ????)
//可能是EINVAL
{
//不能转换成一个数字
}
2) 在C++标准库里面,使用stringstream:(stringstream 可以用于各种数据类型之间的转换)
#include <sstream>
#include <string>
std::string text = "152";
int number;
std::stringstream ss;
ss << text;//可以是其他数据类型
ss >> number; //string -> int
if (! ss.good())
{
//错误发生
}
ss << number;// int->string
string str = ss.str();
if (! ss.good())
{
//错误发生
}
1. c++中string到int的转换
1) 在C标准库里面,使用atoi:
#include <cstdlib>
#include <string>
std::string text = "152";
int number = std::atoi( text.c_str() );
if (errno == ERANGE) //可能是std::errno
{
//number可能由于过大或过小而不能完全存储
}
else if (errno == ????)
//可能是EINVAL
{
//不能转换成一个数字
}
2) 在C++标准库里面,使用stringstream:(stringstream 可以用于各种数据类型之间的转换)
#include <sstream>
#include <string>
std::string text = "152";
int number;
std::stringstream ss;
ss << text;//可以是其他数据类型
ss >> number; //string -> int
if (! ss.good())
{
//错误发生
}
ss << number;// int->string
string str = ss.str();
if (! ss.good())
{
//错误发生
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int atoi( const char* string );
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询