substring去掉最后一个字符串
时间: 2023-07-20 12:26:33 浏览: 130
去除字符串结尾的空白行SubString
可以使用 `lastIndexOf()` 方法找到最后一个字符串的位置,然后使用 `substring()` 方法去掉该字符串。
示例代码如下:
```java
String str = "hello world";
int lastIndex = str.lastIndexOf("o");
if (lastIndex != -1) {
String result = str.substring(0, lastIndex) + str.substring(lastIndex + 1);
System.out.println(result); // 输出 "hell world"
}
```
阅读全文