我有像“yx-name”这样的字符串,其中y和x的数字范围是0到100.从这个字符串开始,在C ++中将'x'提取为整数变量的最佳方法是什么。
答案 0 :(得分:1)
您可以将字符串拆分为.
并直接将其转换为整数类型。 while循环中的第二个数字是您想要的数字,请参阅示例代码:
template<typename T>
T stringToDecimal(const string& s)
{
T t = T();
std::stringstream ss(s);
ss >> t;
return t;
}
int func()
{
string s("100.3-name");
std::vector<int> v;
std::stringstream ss(s);
string line;
while(std::getline(ss, line, '.'))
{
v.push_back(stringToDecimal<int>(line));
}
std::cout << v.back() << std::endl;
}
输出:3
答案 1 :(得分:0)
看起来这个帖子有一个类似于你的问题,它可能会有所帮助;)
答案 2 :(得分:0)
使用两次unsigned long strtoul( const char *str, char **str_end, int base )
来电,例如:
#include <cstdlib>
#include <iostream>
using namespace std;
int main(){
char const * s = "1.99-name";
char *endp;
unsigned long l1 = strtoul(s,&endp,10);
if (endp == s || *endp != '.') {
cerr << "Bad parse" << endl;
return EXIT_FAILURE;
}
s = endp + 1;
unsigned long l2 = strtoul(s,&endp,10);
if (endp == s || *endp != '-') {
cerr << "Bad parse" << endl;
return EXIT_FAILURE;
}
cout << "num 1 = " << l1 << "; num 2 = " << l2 << endl;
return EXIT_FAILURE;
}
答案 3 :(得分:0)
你可以使用boost::lexical_cast来实现它,它使用像billz'回答中的流: 伪代码看起来像这样(在该示例中索引可能是错误的):
std::string yxString = "56.74-name";
size_t xStart = yxString.find(".") + 1;
size_t xLength = yxString.find("-") - xStart;
int x = boost::lexical_cast<int>( yxString + xStart, xLength );
解析错误可以通过lexical_cast引发的异常来处理。 为了更灵活/更强大的文本匹配,我建议boost::regex。