Java之String类的替换功能,取除字符串的两段空格,按字典顺序比较两个字符串

1.String的概述,构造方法
2.String的判断功能
3.String类的获取功能
4.String类的转换功能
5.String类的替换功能

package cn.itcast_06;
/*
 * String类的其他功能
 * 替换功能
 * String replace (char old,char new)
 * String replace (String old.String new)
 * 取除字符串的两段空格
 * String trim()
 * 按字典顺序比较两个字符串
 * int compareTo(String str)
 * int compareTognoreCase(String str)
 */
public class StringDome{

	public static void main(String[] args) {
		
		 //替换功能
		//String replace (char old,char new)
		//String replace (String old.String new)
		String s1 = "helloword";
		String s2 = s1.replace ('l','k');
		String s3 = s1.replace ("owo","ak47");
		System.out.println(s1);
		System.out.println(s2);
		System.out.println(s3);
		
		//取除字符串的两段空格
		//String trim()
		String s4 = " hello word "; 
		String s5 = s4.trim();
		System.out.println(s4);
		System.out.println(s5);
		
		//按字典顺序比较两个字符串
		// int compareTo(String str)区分大小写
		// int compareTognoreCase(String str)不区分大小写
		
		String s6 = "hello";
		String s7 = "hello";
		String s8 = "abc";
		String s9 = "xyz";
		System.out.println(s6.compareTo(s7));//0
		System.out.println(s6.compareTo(s8));//7
		System.out.println(s6.compareTo(s9));//-16
		/*
		 * 如果一样就一对一对的比下去,全部相同就为0
		 * 见到不相同的用ASCLL码表的数值相减等出结果
		 */
		
		
		
		

	}

}

你可能感兴趣的:(String类)