Java程序以获取位于字符串的指定索引处的字符

使用charAt()Java中的方法来获取位于指定索引处的字符。

假设以下是我们的字符串。

String str = "Laptop...";

在3查找字符第三位置。

str.charAt(2);

以下是最后一个示例。

示例

public class Demo {
    public static void main(String[] args) {
       String str = "Laptop...";
       System.out.println("String: "+str);
       System.out.println("Character at position 3 = " +str.charAt(2));
    }
}

输出结果

String: Laptop...
Character at position 3 = p