#include <stdio.h>
#include <ctype.h>
#include <process.h>
void func(char *str)
{
if(!str)
{
printf("Parameter Error!");
exit(1);
}
while(*str)
{
if(!isdigit(*str)) //判断是否为数字
*str=' ';
//不是数字就置位空格
str++;
}
}
int main(void)
{
char pf[100]={0};
printf("Please input string!\n");
gets(pf);
func(pf);
printf("After Be changed ,the string is :%s\n",pf);
return 0;
}