A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 大牛1 中级黑马   /  2016-5-31 11:21  /  425 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

String类的其它功能
  1. package cn.itcast_06;

  2. /*
  3. * String类的其他功能:
  4. *
  5. * 替换功能:
  6. * String replace(char old,char new)
  7. * String replace(String old,String new)
  8. *
  9. * 去除字符串两端空格       
  10. * String trim()
  11. *
  12. * 按字典顺序比较两个字符串  
  13. * int compareTo(String str)
  14. * int compareToIgnoreCase(String str)
  15. */
  16. public class StringDemo {
  17.         public static void main(String[] args) {
  18.                 // 替换功能
  19.                 String s1 = "helloworld";
  20.                 String s2 = s1.replace('l', 'k');
  21.                 String s3 = s1.replace("owo", "ak47");
  22.                 System.out.println("s1:" + s1);
  23.                 System.out.println("s2:" + s2);
  24.                 System.out.println("s3:" + s3);
  25.                 System.out.println("---------------");

  26.                 // 去除字符串两空格
  27.                 String s4 = " hello world  ";
  28.                 String s5 = s4.trim();
  29.                 System.out.println("s4:" + s4 + "---");
  30.                 System.out.println("s5:" + s5 + "---");

  31.                 // 按字典顺序比较两个字符串
  32.                 String s6 = "hello";
  33.                 String s7 = "hello";
  34.                 String s8 = "abc";
  35.                 String s9 = "xyz";
  36.                 System.out.println(s6.compareTo(s7));// 0
  37.                 System.out.println(s6.compareTo(s8));// 7
  38.                 System.out.println(s6.compareTo(s9));// -16
  39.         }
  40. }
复制代码



2 个回复

倒序浏览
有点小敷衍
回复 使用道具 举报

哈哈,你懂的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马