I have string like this: '123plus43times7'
where numbers are followed by words from a dictionary.
I understand that I can extract int/numbers by using the >>
operator:
StringStream >> number
I can get the number. However, the Stream still has the number in it. How do I remove the number when the length of number is unknown or should I find out length of number and then use str.substr() to create a new String Stream ? Any other better method for doing it using C++ STL String and SStream would be really appreciated.
You can insert blank space between text and numbers and then use std::stringstream
#include <iostream>
#include <string>
#include <sstream>
#include <cctype>
int main()
{
std::string s = "123plus43times7";
for (size_t i = 0; i < (s.size() -1 ); i++)
{
if (std::isalpha(s[i]) != std::isalpha(s[i + 1]))
{
i++;
s.insert(i, " ");
}
}
std::stringstream ss(s);
while (ss >> s)
std::cout << s << "\n";
return 0;
}
here's one way to do it
string as = "123plus43times7";
for (int i = 0; i < as.length(); ++i)
{
if (isalpha(as[i]))
as[i] = ' ';
}
stringstream ss(as);
int anum;
while (ss >> anum)
{
cout << "\n" << anum;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With