gpt4 book ai didi

string - Scala 中每个单词的首字母大写

转载 作者:行者123 更新时间:2023-12-01 18:35:24 33 4
gpt4 key购买 nike

我知道这样

val str=org.apache.commons.lang.WordUtils.capitalizeFully("is There any other WAY"))

想知道是否还有其他方法可以做到这一点。

Scala 风格的东西

最佳答案

将字符串的第一个字母大写:

"is There any other WAY".capitalize
res8: String = Is There any other WAY

将字符串中每个单词的第一个字母大写:

"is There any other WAY".split(' ').map(_.capitalize).mkString(" ")
res9: String = Is There Any Other WAY

将字符串的第一个字母大写,而其他所有字母小写:

"is There any other WAY".toLowerCase.capitalize
res7: String = Is there any other way

将字符串中每个单词的第一个字母大写,而其他所有字母小写:

"is There any other WAY".toLowerCase.split(' ').map(_.capitalize).mkString(" ")
res6: String = Is There Any Other Way

关于string - Scala 中每个单词的首字母大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25787829/

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