我的字符串格式为######### s ###。## 其中####只是几个数字,第二部分通常是小数,但并非总是如此。
我需要将两个数字分开,并将它们设置为两个双打(或其他一些有效的数字类型。
我只能使用标准方法,因为它运行的服务器只有标准模块。
我现在可以使用find和substr抓住第二块,但无法弄清楚如何获得第一块。我还没有做任何将第二部分改成数字类型的东西,但希望这更容易。
这就是我所拥有的:
string symbol,pieces;
fin >> pieces; //pieces is a string of the type i mentioned #####s###.##
unsigned pos;
pos = pieces.find("s");
string capitals = pieces.substr(pos+1);
cout << "Price of stock " << symbol << " is " << capitals << endl;
答案 0 :(得分:3)
istringstream
让事情变得简单。
#include <iostream>
#include <sstream>
#include <string>
int main(int argc, char* argv[]) {
std::string input("123456789s123.45");
std::istringstream output(input);
double part1;
double part2;
output >> part1;
char c;
// Throw away the "s"
output >> c;
output >> part2;
std::cout << part1 << ", " << part2 << std::endl;
return 0;
}
答案 1 :(得分:2)
您可以在调用substr
时指定计数和偏移量:
string first = pieces.substr(0, pos);
string second = pieces.substr(pos + 1);
答案 2 :(得分:2)
你可以做与第二部分相同的事情:
unsigned pos;
pos = pieces.find("s");
string firstPart = pieces.substr(0,pos);
答案 3 :(得分:1)
抓住第一件很容易:
string firstpiece = pieces.substr(0, pos);
至于转换为数字类型,我发现sscanf()
对此特别有用:
#include <cstdio>
std::string pieces;
fin >> pieces; //pieces is a string of the type i mentioned #####s###.##
double firstpiece = 0.0, capitals = 0.0;
std::sscanf(pieces.c_str() "%lfs%lf", &firstpiece, &capitals);
...
答案 4 :(得分:1)
此代码会根据需要拆分string
并将其转换为double
,也可以轻松更改为转换为float
:
#include <iostream>
#include <sstream>
#include <string>
#include <stdexcept>
class BadConversion : public std::runtime_error {
public:
BadConversion(std::string const& s)
: std::runtime_error(s)
{ }
};
inline double convertToDouble(std::string const& s,
bool failIfLeftoverChars = true)
{
std::istringstream i(s);
double x;
char c;
if (!(i >> x) || (failIfLeftoverChars && i.get(c)))
throw BadConversion("convertToDouble(\"" + s + "\")");
return x;
}
int main()
{
std::string symbol,pieces;
std::cin >> pieces; //pieces is a string of the type i mentioned #####s###.##
unsigned pos;
pos = pieces.find("s");
std::string first = pieces.substr(0, pos);
std::string second = pieces.substr(pos + 1);
std::cout << "first: " << first << " second " << second << std::endl;
double d1 = convertToDouble(first), d2 = convertToDouble(second) ;
std::cout << d1 << " " << d2 << std::endl ;
}
仅供参考,我从我的previous answers之一获取了转换代码。
答案 5 :(得分:0)
有些人会抱怨这不是C ++ - 但这是有效的C ++
char * in = "1234s23.93";
char * endptr;
double d1 = strtod(in,&endptr);
in = endptr + 1;
double d2 = strtod(in, &endptr);