Java String charAt()方法返回位於String
指定索引處的字元。字串索引從零開始。
語法
以下是此方法的語法 -
public char charAt(int index)
index
- 要返回的字元的索引。
public class Test {
public static void main(String args[]) {
String s = "Welcome to tw511.com";
char result = s.charAt(6);
System.out.println(result);
}
}
執行上面範例程式碼,得到以下結果:
e