您好,登錄后才能下訂單哦!
在C語言中,字符串是一系列字符的集合,以空字符(‘\0’)結尾。處理字符串時,可能需要對其進行清洗,以消除不需要的字符或格式。以下是一些常用的文本清洗技術:
#include<stdio.h>
#include<string.h>
#include <ctype.h>
void trim(char *str) {
int i, j;
for (i = 0; isspace(str[i]); i++)
;
for (j = strlen(str) - 1; j >= 0 && isspace(str[j]); j--)
;
if (j >= i) {
memmove(str, &str[i], j - i + 2);
str[j - i + 1] = '\0';
} else {
str[0] = '\0';
}
}
int main() {
char str[] = " Hello, World! ";
printf("Before: %s\n", str);
trim(str);
printf("After: %s\n", str);
return 0;
}
#include<stdio.h>
#include<string.h>
#include <ctype.h>
void to_lowercase(char *str) {
for (int i = 0; str[i]; i++) {
str[i] = tolower(str[i]);
}
}
void to_uppercase(char *str) {
for (int i = 0; str[i]; i++) {
str[i] = toupper(str[i]);
}
}
int main() {
char str[] = "Hello, World!";
printf("Original: %s\n", str);
to_lowercase(str);
printf("Lowercase: %s\n", str);
to_uppercase(str);
printf("Uppercase: %s\n", str);
return 0;
}
#include<stdio.h>
#include<string.h>
void replace_char(char *str, char old_char, char new_char) {
for (int i = 0; str[i]; i++) {
if (str[i] == old_char) {
str[i] = new_char;
}
}
}
void replace_substring(char *str, const char *old_sub, const char *new_sub) {
char buffer[256];
char *p = strstr(str, old_sub);
while (p) {
strncpy(buffer, str, p - str);
buffer[p - str] = '\0';
strcat(buffer, new_sub);
strcat(buffer, p + strlen(old_sub));
strcpy(str, buffer);
p = strstr(str, old_sub);
}
}
int main() {
char str[] = "Hello, World!";
printf("Original: %s\n", str);
replace_char(str, 'l', 'L');
printf("After replacing 'l' with 'L': %s\n", str);
replace_substring(str, "World", "Everyone");
printf("After replacing 'World' with 'Everyone': %s\n", str);
return 0;
}
這些示例展示了如何使用C語言對字符串進行清洗。根據實際需求,可以根據這些示例編寫自定義的文本清洗函數。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。