Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何更改包含多个单词的字符串中第一个字符的大小写?例如:
第一个 最后一个
至
第一个最后一个
或者
肥猫饿了
转小写 public String toLowerCase() 使用默认语言环境的规则将此字符串中的所有字符转换为小写。 返回: 转换为小写的字符串。
转小写
public String toLowerCase()
使用默认语言环境的规则将此字符串中的所有字符转换为小写。
返回: 转换为小写的字符串。
下次先搜索Java API。
在爪哇?
result = changeCase.toLowerCase( )
就这样做:
String result = yourstring.toLowerCase( );