Java程序访问字符串的字符
要访问Java中字符串的字符,请使用charAt()方法。位置需要作为参数添加。
假设我们有以下字符串-
String str = "laptop";
使用 charAt() 方法找到位于第4个位置的字符。
str.charAt(3));
以下是最终例子。
示例
public class Demo {
public static void main(String[] args) {
String str = "laptop";
System.out.println("String: "+str);
// finding character at 4th position
System.out.println("Character at 4th position: "+str.charAt(3));
}
}
输出
String: laptop
Character at 4th position: t