hutool有没有方法可以让字符串首字母大写
时间: 2023-10-08 21:12:17 浏览: 796
Python实现将字符串的首字母变为大写,其余都变为小写的方法
5星 · 资源好评率100%
是的,Hutool 提供了 `StrUtil.upperFirst(CharSequence str)` 方法可以将字符串的首字母转换为大写,示例如下:
```java
import cn.hutool.core.util.StrUtil;
public class UpperFirstDemo {
public static void main(String[] args) {
String str = "hello world";
String result = StrUtil.upperFirst(str);
System.out.println(result); // 输出 "Hello world"
}
}
```
其中,`StrUtil.upperFirst(CharSequence str)` 方法的参数是一个 `CharSequence` 类型的字符串,返回值是将首字母转换为大写后的字符串。如果参数为 `null` 或空字符串,则直接返回原字符串。
阅读全文