使用String方法在Java中大写最后一个字母

时间:2017-03-31 15:22:58

标签: java string capitalize

如何将字符串的最后一个字母大写? String Class中有一个方法可以做到吗?

我正在练习一些练习,并且我被要求用一种方法来练习。

1 个答案:

答案 0 :(得分:0)

不,没有。但你可以自己写一个。

 public String capitalizeLastLetter(String word) {
    //null check
    int length = word.length();
    String capitalizedLetter = word.substring(length - 2, length - 1).toUppercase();
    return word.substring(0, length - 2) + capitalizedLetter;
}