删除字符串中除字母之外的字符
#include
int main() {
char line[150];
printf("Enter a string: ");
fgets(line, sizeof(line), stdin); // take input
for (int i = 0, j; line[i] != '\0'; ++i) {
// enter the loop if the character is not an alphabet
// and not the null character
while (!(line[i] >= 'a' && line[i] <= 'z') && !(line[i] >= 'A' && line[i] <= 'Z') && !(line[i] == '\0')) {
for (j = i; line[j] != '\0'; ++j) {
// if jth element of line is not an alphabet,
// assign the value of (j+1)th element to the jth element
line[j] = line[j + 1];
}
line[j] = '\0';
}
}
printf("Output String: ");
puts(line);
return 0;
}
输出
Enter a string: p2'r-o@gram84iz./
Output String: programiz
该程序从用户获取字符串输入并将其存储在line变量中。然后, for
循环用于遍历字符串的字符 。
如果在字符串中的字符不是字母,它是从字符串除去剩余的字符的位置由1个位置移动到左侧。