java String 截取第一位
时间: 2023-08-04 21:33:19 浏览: 105
截取字符串下的第一个角色值
假设你要截取的字符串是 `str`,可以使用以下代码截取第一位:
```java
public class Main {
public static void main(String[] args) {
String str = "hello";
char c = str.charAt(0); // 获取第一位字符
System.out.println(c); // 输出结果 h
}
}
```
字符串也可以像数组一样使用 `charAt()` 方法来访问每一位字符,下标从 0 开始。因此,`str.charAt(0)` 就是字符串的第一位字符。
阅读全文