美文网首页
2018-11-06

2018-11-06

作者: 陈皮丨阿四 | 来源:发表于2018-11-06 21:13 被阅读0次

    // String s1 = "Ha";

    // String s2 = "ha";

    // //1.eauals*

    // //2.equalsIgnoreCase忽略大小写比较*

    // //3.toCharArray返回字符数组

    // System.out.println(s1.equalsIgnoreCase(s2));//ture

    // //4.大小写转换

    // String s3 = "HHAKDHKAHD";

    // String s4 = s3.toLowerCase();

    // System.out.println(s4);

    //5.char charAt(int)*

    // String s1 = "hello";

    // System.out.println(s1.charAt(0));

    //6.String substring(int berin)截取**

    // String s1 = "adjajdlajd";

    // System.out.println(s1.substring(2,4));

    //7.indexof返回指定字符在此字符串中第一次出现处的索引

    // String s1 = "adsadsaas";

    // System.out.println(s1.indexOf('s',3));

    //

    //8.trim()**掐头去尾

    // String str = "    adsdsdsa    adasdasd    ";

    // if(str != null && !str.trim().equals("")) {

    // System.out.println("不为空");

    // }

    // System.out.println(str.trim());

    //9.length

    System.out.println("hello".length());

    }

    相关文章

      网友评论

          本文标题:2018-11-06

          本文链接:https://www.haomeiwen.com/subject/pvspxqtx.html