字符串中删除数字
Posted 当年和风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串中删除数字相关的知识,希望对你有一定的参考价值。
1 #include<string.h> 2 #define MAX 100 3 #include<iostream> 4 using namespace std; 5 int main() 6 { 7 printf("在西安的古道,写着庸俗的代码\n"); 8 9 char str[MAX]; 10 int count = 0; 11 cin.getline(str,MAX); 12 int len = strlen(str); 13 char temp[MAX]; 14 for (int i = 0; i<len; i++) 15 { 16 if (str[i]<‘0‘||str[i]>‘9‘) 17 { 18 temp[count++] = str[i]; 19 } 20 } 21 temp[count] = ‘\0‘; 22 strcpy_s(str, temp); 23 printf("%s",str); 24 return 0; 25 26 }
以上是关于字符串中删除数字的主要内容,如果未能解决你的问题,请参考以下文章