在Java中,charAt()
方法用于從字符串中獲取指定索引位置的字符
String str = "Hello, World!";
char[] charArray = str.toCharArray();
char ch = charArray[index];
substring()
方法和charAt()
方法組合:String str = "Hello, World!";
int index = 5;
char ch = str.substring(index, index + 1).charAt(0);
codePointAt()
方法(適用于Unicode字符):String str = "Hello, World!";
int index = 5;
int codePoint = str.codePointAt(index);
char ch = (char) codePoint;
請注意,這些替代方案可能不適用于所有情況。在處理包含Unicode字符的字符串時,建議使用codePointAt()
方法。