gpt4 book ai didi

dart - 如何将 Dart 中的每个字母大写?

转载 作者:IT王子 更新时间:2023-10-29 07:12:34 25 4
gpt4 key购买 nike

我试过这段代码,但结果只是首字母大写(不是每个字母)

String ucwords(String input) {
if (input == null) {
throw new ArgumentError("string: $input");
}
if (input.length == 0) {
return input;
}
return input[0].toUpperCase() + input.substring(1);
}

最佳答案

我建议您阅读 toUpperCase() 的文档.它给出了一个确切说明您想要做什么的示例。

您的代码应为:

return input.toUpperCase();

关于dart - 如何将 Dart 中的每个字母大写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54499546/

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