System.out.println(s.indexOf("h"));//索引第一个出现一个字符的角标
System.out.println(s.trim());//去掉字符串前后空格
System.out.println(s.lastIndexOf("h"));//索引最后出现一个字符的角标
System.out.println(s.substring(o));//截取字符串的长度,把o之前的字符串剪切了,保留在变量中
String[] arrr = s.split(",");//把一个字符串 进行拆分 按着一定的格式 生成一个字符串数组 split();
本文出自 “12267877” 博客,请务必保留此出处http://12277877.blog.51cto.com/12267877/1876469
原文:http://12277877.blog.51cto.com/12267877/1876469