我有一个字符串,
“这是我的身份4321。”
现在如何使用c ++从整个字符串中仅提取数字部分“4321”。 谢谢。
答案 0 :(得分:2)
// Example string
std::string str = "this is my id 4321.";
// For atoi, the input string has to start with a digit, so lets search for the first digit
size_t i = 0;
for ( ; i < str.length(); i++ ){ if ( isdigit(str[i]) ) break; }
// remove the first chars, which aren't digits
str = str.substr(i, str.length() - i );
// convert the remaining text to an integer
int id = atoi(str.c_str());
// print the result
std::cout << id << std::endl;