String类常用方法

2019-02-20  本文已影响7人  竹鼠不要中暑

compareTo

比较两个字符串,返回值为整数。

string.compareTo(String anotherString)
public class Test {

    public static void main(String[] args) {
        String str1 = "abc";
        String str2 = "abc";
        String str3 = "abcd";
        String str4 = "aBd";
//        两字符串相等,返回0:
        System.out.println(str1.compareTo(str2)); // 0
//        两字符串在较短的字符串的长度范围内相等,返回两字符串长度的差值:
        System.out.println(str2.compareTo(str3)); // -1
//        两字符串在较短的字符串的长度范围内不相等,返回第一个不相等索引出的字符的ASCII的差值:
        System.out.println(str3.compareTo(str4)); // 32
    }
}

concat

和JavaScript中的concat方法用法相同,Java中的concat同样用来连接两个字符串。

string.concat(anotherString)

其中:

  1. 返回值为一个新字符串;
  2. 新字符串中anotherString连接在string后;
  3. anotherString长度为0,则直接返回原字符串string
public class Test {

    public static void main(String[] args) {
        String str1 = new String("hello");
        String str2 = "-world";
        String str3 = "";
        String str4 = new String("hello");
//        str2拼接在str1后:
        System.out.println(str1.concat(str2)); // "hello-world"
//        返回值为新字符串,原字符串不变:
        System.out.println(str1); // "hello"
        System.out.println(str2); // "-world"
//        若要拼接的字符串(str3)长度为0,则直接返回原字符串(str1):
        System.out.println(str1.concat(str3) == str1); // true
        System.out.println(str1 == str4); // false
//        返回值为新字符串:
        System.out.println(str3.concat(str1) == str1); // false

    }
}

equals

equals方法在Object类常用方法中学习中,知道了String类的equals方法被重写了,只比较两个字符串的内容是否相等,相等返回true,不相等返回false
有两点:

public class Test {

    public static void main(String[] args) {
        String str1 = new String("hello");
        String str2 = new String("hello");
        StringBuilder str3 = new StringBuilder("hello");
        System.out.println(str1.equals(str2)); // true
        System.out.println(str1.equals(str3)); // false
        System.out.println(str1.contentEquals(str3)); // true
    }
}

join

join方法用于把一个字符串数组或List以指定连接符连接为一个新的字符串。

String.join(连接符,字符串数组或List)
import java.util.Arrays;
import java.util.List;

public class Test {

    public static void main(String[] args) {
        String[] arrayStr = {"h", "e", "l", "l", "o"};
        List<String> listStr = Arrays.asList("h", "e", "l", "l", "o");
        System.out.println(String.join("", arrayStr)); // "hello"
        System.out.println(String.join("-", listStr)); // "h-e-l-l-o"
//        使用反斜杠做连接符时要转义:
        System.out.println(String.join("\\", arrayStr)); // "h\e\l\l\o"
    }
}

可以连接就可以再拆分,和JavaScript中一样,使用split方法。

其他方法

split

public class Test {

    public static void main(String[] args) {
        String str = "h e l l o";
        String[] arrayStr = str.split(" ");
        for (int i = 0; i < arrayStr.length; i++) {
            System.out.println(arrayStr[i]);
        }
    }
}
h
e
l
l
o

trim

用于删除字符串的头尾空白符。

public class Test {

    public static void main(String[] args) {
        String str = "  hello world!  ";
        System.out.println(str);
        System.out.println(str.trim());
    }
}

isEmpty

判断字符串是否为空,字符串为空返回true,不为空返回false,字符串若为null则报错。

public class Test {

    public static void main(String[] args) {
        String str = "  hello world!  ";
        String str2;
        String str3 = new String();
        String str4 = "";
        System.out.println(str.isEmpty()); // false
        System.out.println(str2.isEmpty()); // 报错
        System.out.println(str3.isEmpty()); // true
        System.out.println(str4.isEmpty()); // true

    }
}
上一篇下一篇

猜你喜欢

热点阅读