JAVA String常用方法

 *  int length():返回字符串的长度: return value.length
 *  char charAt(int index): 返回某索引处的字符return value[index]
 *  boolean isEmpty():判断是否是空字符串:return value.length == 0
 @Test
    public void test1() {
        String s1 = " Helloworld";
        System.out.println(s1.length());
        System.out.println(s1.charAt(5));
        s1 = "";
        boolean S = s1.isEmpty();
        System.out.println(S);
    }
 *  String toLowerCase():使用默认语言环境,将 String 中的所有字符转换为小写
 *  String toUpperCase():使用默认语言环境,将 String 中的所有字符转换为大写
 @Test
    public void test2() {
        String s1 = "Helloworld";
        System.out.println(s1.toUpperCase());
        System.out.println(s1.toLowerCase());
    }
 *  String trim():返回字符串的副本,忽略前导空白和尾部空白
@Test
    public void test3() {
        String s1 = "  Hello  world    ";
        System.out.println(s1.trim());
    }
 *  boolean equals(Object obj):比较字符串的内容是否相同
 *  boolean equalsIgnoreCase(String anotherString):与equals方法类似,忽略大小写
 @Test
    public void test4() {
        String s1 = "Helloworld";
        String s2 = "helloworld";
        System.out.println(s1.equals(s2));
        System.out.println(s1.equalsIgnoreCase(s2));
    }
 *  String concat(String str):将指定字符串连接到此字符串的结尾。 等价于用“+”
 *  int compareTo(String anotherString):比较两个字符串的大小
 *  String substring(int beginIndex):返回一个新的字符串,它是此字符串的从beginIndex开始截取到最后的一个子字符串。
 *  String substring(int beginIndex, int endIndex) :返回一个新字符串,它是此字符串从beginIndex开始截取到endIndex(不包含)的一个子字符串。
 @Test
    public void test5() {
        String s1 = "Hello";
        String s2 = "abc";
        String s3 = "abe";
        System.out.println(s1.substring(2));
        System.out.println(s1.substring(2, 4));
        System.out.println(s2.compareTo(s3));
        System.out.println(s1.concat("world"));
    }
 *  boolean endsWith(String suffix):测试此字符串是否以指定的后缀结束
 *  boolean startsWith(String prefix):测试此字符串是否以指定的前缀开始
 *  boolean startsWith(String prefix, int toffset):测试此字符串从指定索引开始的子字符串是否以指定前缀开始
 *  boolean contains(CharSequence s):当且仅当此字符串包含指定的 char 值序列时,返回 true
 *  int indexOf(String str):返回指定子字符串在此字符串中第一次出现处的索引
 *  int indexOf(String str, int fromIndex):返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始
 *  int lastIndexOf(String str):返回指定子字符串在此字符串中最右边出现处的索引
 *  int lastIndexOf(String str, int fromIndex):返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索
 *  indexOf和lastIndexOf方法如果未找到都是返回-1
  @Test
    public void test6() {
       String s1 = "Helloworld";
       String s2 = "world";
       System.out.println(s1.endsWith("ld"));
       System.out.println(s1.startsWith("Hell"));
       System.out.println(s1.startsWith("ll", 2));
       System.out.println(s1.contains(s2));
       System.out.println(s1.lastIndexOf("l"));
       System.out.println(s1.lastIndexOf("l", 3));
       System.out.println(s1.indexOf("ll"));
       System.out.println(s1.indexOf("ll", 2));
    }
* ​​​​​​​String replace(char oldChar, char newChar):返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有oldChar得到的。 
* String replace(CharSequence target, CharSequence replacement):使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。
 
 @Test
    public void test7() {
        String s1 = "Helloworld";
        String s2 = "World";
        System.out.println(s1.replace("world", s2));
        System.out.println(s1.replace("l", "L"));

    }

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值