C++中从String分离出数字
用C++如何从String中分离出数字,如“8.89+2.33”如何分离出数字8.89和2.33...
用C++如何从String中分离出数字,如“8.89+2.33”如何分离出数字8.89和2.33
展开
5个回答
展开全部
用库函数atof, 字符串转float。然后根据该数字的长度移动指向string的指针继续调用此函数,直到字符串结束。
Return Value of double atof(const char *str )
On success, the function returns the converted floating point number as a double value.
If no valid conversion could be performed, or if the correct value would cause underflow, a zero value (0.0) is returned.
If the correct value is out of the range of representable values, a positive or negative HUGE_VAL is returned.
Return Value of double atof(const char *str )
On success, the function returns the converted floating point number as a double value.
If no valid conversion could be performed, or if the correct value would cause underflow, a zero value (0.0) is returned.
If the correct value is out of the range of representable values, a positive or negative HUGE_VAL is returned.
展开全部
判断到那个字符即不为‘0’~‘9’也不为‘。’不就可以分离数据了(分离的看看C++文档) (转换用atof)
如果是这个串 的话就可以直接查找"+"用 Find(const char* str, size_type index)
如果是这个串 的话就可以直接查找"+"用 Find(const char* str, size_type index)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个说来也不麻烦,但如果有字符串“8.891003.2.35”该如何分离?
如果不考虑这种情况,遇到数字或者小数点就用新的字符串中相应位置存储,直到非数字字符时,将下次出现的数字或小数点用另一新的字符串中相应位置存储,直到遇到结束标志‘\0'
如果不考虑这种情况,遇到数字或者小数点就用新的字符串中相应位置存储,直到非数字字符时,将下次出现的数字或小数点用另一新的字符串中相应位置存储,直到遇到结束标志‘\0'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<string>
#include<iostream>
#include<cctype>
using namespace std;
int main()
{
cout<<"输入一个不超过100长度的字符串:"<<endl;
string str;
cin>>str;
for(int i=0;i<100;i++)
{
if(isdigit(str[i]) || str[i]=='.')
cout<<str[i];
else cout<<" ";
}
return 0;
}
#include<iostream>
#include<cctype>
using namespace std;
int main()
{
cout<<"输入一个不超过100长度的字符串:"<<endl;
string str;
cin>>str;
for(int i=0;i<100;i++)
{
if(isdigit(str[i]) || str[i]=='.')
cout<<str[i];
else cout<<" ";
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询