如何在 Java 中移除字符串中的最后一个字符?


StringBuffer 类包含一个称为 deleteCharAt() 的方法。此方法删除指定索引/位置处的字符。你可以使用此方法从 Java 中的字符串中删除/移除特定字符。

示例

public class Test {
   public static void main(String args[]){
      String str = "hi welcome to Tutorialspoint";
      StringBuffer sb= new StringBuffer(str);
      sb.deleteCharAt(sb.length()-1);
      System.out.println(sb);
   }
}

输出

hi welcome to Tutorialspoint

更新于: 26-Feb-2020

2K+ 浏览量

开启你的 职业生涯

通过完成课程来获得认证

立即开始
广告