我需要将 char 数组转换为小写 char 数组。我还想将一些特殊字符,如 Ä 转换为 ä。但是“ASCII-Code”196 不在 ASCII-128 中。如何将它们转换为小写?我可以将它们用作字符串初始化器,但不能真正处理它们的代码。如果这可能是一个编译器选项,我在没有 c99 模式的 Linux 上使用 eclipse CDT(不能使用那个)。
char* toLowerCase(char* text)
{
int length = strlen(text);
char* result = malloc(length); // malloc adds the 0 automatically at result[length]
int i;
for (i = 0; i < length; i++)
if ((text[i] >= 65) && (text[i] <= 90))
result[i] = text[i] | 32;
else
result[i] = text[i];
return result;
}
toLowerCase("hElLo WoRlD ÄäÖöÜü");
// result is "hello world ÄäÖöÜü"
tolower()
fromctype.h
也不这样做。