java 怎样获取字符串里面的内容

如题所述

第1个回答  2017-03-01
String str = "as546fasds6d";
str.substring(0, 2);
str.substring(6);
str.charAt(5);本回答被提问者采纳
相似回答