Java從字串取得指定索引位置的字元的方式如下。
使用String.charAt(int index)
,參數為索引。
例如下面取得字串hello
的索引1的字元為e
。
Main.java
package com.abc.demo;
public class Main {
public static void main(String[] arges) {
System.out.println("hello".charAt(1)); // e
}
}
沒有留言:
張貼留言