gpt4 book ai didi

java - java中简单的字符串连接操作

转载 作者:搜寻专家 更新时间:2023-10-31 19:34:27 25 4
gpt4 key购买 nike

我想得到以下输出:

Hello Steve Andrews!

这些是我的变量:

a = "steve";
b = "Andrew"

我试过这个:

System.out.print("Hello " + a + " " + b + "s");

我不知道将 .toUpper() 放在哪里 steves 应该是大写的。我该怎么做?

最佳答案

使用StringUtils.capitalize(a) ,

"Hello " + StringUtils.capitalize(a) + " " + b + "s"

Capitalizes a String changing the first letter to title case as per Character.toTitleCase(char). No other letters are changed.

关于java - java中简单的字符串连接操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11398992/

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