📌  相关文章
📜  从字符串java代码示例中获取某个字符

📅  最后修改于: 2022-03-11 14:52:06.497000             🧑  作者: Mango

代码示例1
String words = "Hi There"; //creating a string var named 'words'
char index = words.charAt(0); /* setting a variable 'index' to letter
'0' of variable 'words'. In this case, index = 'H'.*/
System.out.println(index); //print var 'index' which will print "H"