c++提取a123bb12c1中的数字
时间: 2024-02-11 14:05:33 浏览: 49
你可以使用循环遍历字符串的每个字符,判断其是否为数字,如果是,则将其提取出来。
以下是一个简单的示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "a123bb12c1";
string result = "";
for (int i = 0; i < str.length(); i++) {
if (isdigit(str[i])) {
result += str[i];
}
}
cout << result << endl; // 输出结果为:123121
return 0;
}
```
在上面的代码中,我们使用了一个 `for` 循环遍历了字符串中的每个字符,然后使用 `isdigit` 函数判断该字符是否为数字,如果是,则将其添加到结果字符串中。最后输出结果字符串即可。
相关问题
c++提取a123bb12c1中的字符
你可以使用循环遍历字符串的每个字符,判断其是否为数字或字母,然后将其提取出来。
以下是一个简单的示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "a123bb12c1";
string result = "";
for (int i = 0; i < str.length(); i++) {
if (isalnum(str[i])) {
result += str[i];
}
}
cout << result << endl; // 输出结果为:a123bb12c1
return 0;
}
```
在上面的代码中,我们使用了一个 `for` 循环遍历了字符串中的每个字符,然后使用 `isalnum` 函数判断该字符是否为数字或字母,如果是,则将其添加到结果字符串中。最后输出结果字符串即可。
c++不用函数提取a123bb12c1中的数字
你可以使用循环遍历字符串的每个字符,判断其是否为数字,如果是,则将其提取出来。
以下是一个简单的示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "a123bb12c1";
string result = "";
for (int i = 0; i < str.length(); i++) {
if (str[i] >= '0' && str[i] <= '9') {
result += str[i];
}
}
cout << result << endl; // 输出结果为:123121
return 0;
}
```
在上面的代码中,我们使用了一个 `for` 循环遍历了字符串中的每个字符,然后判断该字符是否在 '0'~'9' 的 ASCII 码范围内,如果是,则将其添加到结果字符串中。最后输出结果字符串即可。
值得注意的是,这种方法只适用于纯数字字符串。如果字符串中包含其他字符,使用这种方法可能会导致错误结果。
阅读全文