我正在尝试使用 C 中的指针和 strcat。这是我学习过程的一部分。
这个想法是用户输入一个包含数字的字符串,输出应该只返回数字。因此,如果用户输入
te12abc
输出应该是12
.
这是我的第一次尝试:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define SIZE 10
int main()
{
char palavra[SIZE];
char palavra2[SIZE];
char *pont = palavra;
char *pont2 = palavra2;
printf("Insert the string\n");
scanf("%s", palavra);
do{
if (isdigit(*pont)){
strcat(palavra2, *pont);
}
*pont++;
}while (*pont != '\0');
printf("\nThe number is:\n%s\n", palavra2);
return 0;
}
我相信指针按预期工作,但不明白为什么 strcat 不工作。
第二次尝试是程序找到一个数字,将该字符存储在一个变量中,然后才尝试将 strcat 与该变量一起使用。这是代码:
int main()
{
char palavra[SIZE];
char palavra2[SIZE];
char temp;
char *pont = palavra;
char * pont2 = &temp;
printf("Insert the string\n");
scanf("%s", palavra);
do{
if (isdigit(*pont)){
temp = *pont;
strcat(palavra2, pont2);
}
*pont++;
}while (*pont != '\0');
printf("\nThe number is:\n%s\n", palavra2);
return 0;
}
它再次给我在 strcat 上带来了问题。
做了最后一次尝试,但没有指针,仍然 strcat 不起作用。这是代码:
int main()
{
int i = 0;
char palavra[SIZE];
char palavra2[SIZE];
char temp;
printf("Insert the string\n");
scanf("%s", palavra);
do{
if (isdigit(palavra[i])){
temp = palavra[i];
strcat(palavra2, palavra[i]);
}
i++;
}while (palavra[i] != '\0');
printf("\nThe number is:\n%s\n", palavra2);
return 0;
}
你能指出我正确的方向吗?不要现在我还能做什么..
问候,
收藏夹