java 截取字符串第一个字符
时间: 2023-07-17 09:03:12 浏览: 154
java代码-截取首尾两个字符串中间的字符串
Java中的substring方法用于截取字符串。该方法有两种重载形式:
1. substring(int beginIndex):截取从beginIndex开始到字符串结尾的子字符串。
2. substring(int beginIndex, int endIndex):截取从beginIndex开始到endIndex-1结束的子字符串。
例如:
```
String str = "Hello World!";
System.out.println(str.substring(6)); // World!
System.out.println(str.substring(0, 5)); // Hello
```
第一个输出为World!,第二个输出为Hello
请注意,在截取子字符串时,beginIndex和endIndex是包含在子字符串中的。
阅读全文