0

我需要将 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也不这样做。

4

1 回答 1

3

我认为您需要阅读有关setlocale的信息,(或此处

并使用 tolow()

注意: 在程序启动时,相当于 setlocale(LC_ALL, "C"); 在运行任何用户代码之前执行。

您可以尝试环境的默认语言环境(或者如果您知道,请选择正确的语言环境):

setlocale(LC_ALL, "");
于 2013-01-25T10:30:09.893 回答