标签:string类 com case ase bsp pareto har nbsp 第一个
1:String replace(char old,char new)
2: String replace(String old,String new)
3: trim();//去除字符串空格
4:int compareTo(String str);//按码表顺序比较俩个字符串(长度一样的时候),不一样就比较长度先,返回int类型
如:String s1 = "ab";
String s2 = "cd";
int x =s1.compareTo(s2);//输出32,第一个不同,就比较第一个先,否则再下一个
5:int compareToIgnoreCase(String str) //雷同,大家懂得
标签:string类 com case ase bsp pareto har nbsp 第一个
原文地址:http://www.cnblogs.com/blue-crystal/p/7571591.html