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码表的数值相减等出结果
		 */
		
		
		
		

	}

}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Unknown To Known

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值