📌  相关文章
📜  如何替换字符串swift代码示例中的某些字符

📅  最后修改于: 2022-03-11 15:01:01.579000             🧑  作者: Mango

代码示例4
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"