Java 程序以获取位于字符串指定索引处的字符
在 Java 中使用 charAt() 方法获取位于指定索引处的字符。
假设以下为我们的字符串。
String str = "Laptop...";
在第 3rd 位置查找字符。
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
广告