gpt4 book ai didi

将西类牙语字符串转换为大写

转载 作者:行者123 更新时间:2023-12-05 04:36:15 25 4
gpt4 key购买 nike

我想将西类牙语字符串转换为大写。我对所有字符使用函数 toupper。该函数不转换带重音符号的字符:

PROTECCIóN

也不是 enye 字符:

DAñO

我使用 setlocale 函数。

setlocale(LC_ALL, "es_ES");

最佳答案

使用 setlocale(LC_ALL, "es_ES.utf8"); 以及使用 wchar_ttowupper(. ) 函数。

输出

protección daño  PROTECCIÓN DAÑO

#include <stdio.h>
#include <stdlib.h>
#include <wctype.h>
#include <wchar.h>
#include <locale.h>

int main(void) {
if (!setlocale(LC_ALL, "es_ES.utf8")) return 1;
wchar_t input[] = L"protección daño";
int length = sizeof(input)/sizeof(input[0]);
wchar_t output[length];
for (int i = 0; i < length-1; ++i) {
output[i] = towupper(input[i]);
}
output[length-1] = '\0';
printf ("%ls %ls\n", input, output);

return 0;
}

关于将西类牙语字符串转换为大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70879253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com