天天看點

String類的一些使用技巧

/**
 * description:這裡是string的一些方法的使用說明
 * Created by gaoyw on 2018/5/2.
 */
public class StringJDK {
    /**
     * 将字元串變成一個字元數組
     */
    public static void tocharyArry() {
        System.out.println("=========将字元串變成一個字元數組========");
        String str = "helloWorld";
        char c[] = str.toCharArray();
        System.out.print ("轉為數組輸出:" );
        for (int i = ; i < c.length; i++) {
            System.out.print (c[i]+" ");
        }
    }
    /**
     * 從字元串中取出指定位置的字元
     */
    public static void tocharAt() {
        System.out.println("\n=========從字元串中取出指定位置的字元========");
        String str = "helloWorld";
        char c = str.charAt();
        System.out.println("指定字元為:" + c);
    }
    /**
     * 将字元串變成一個byte數組
     */
    public static void tobyte() {
        System.out.println("=========将字元串變成一個byte數組========");
        String str = "helloWorld";
        byte b[] = str.getBytes();
        System.out.println("轉換成byte數組輸出為:" + new String(b));
    }
    /**
     * 取得一個字元串的長度
     */
    public static void tolength() {
        System.out.println("=========取得一個字元串的長度========");
        String str = "helloWorld";
        int l = str.length();
        System.out.println("這個字元串的長度為:" + l);
    }
    /**
     * 查找一個指定的字元串是否存在,傳回的是字元串的位置,如果不存在,則傳回-1
     */
    public static void toindexOf() {
        System.out.println("=========查找一個指定的字元串是否存在========");
        String str = "helloWorld";
        int a1 = str.indexOf("e");// 查找字元e的位置
        int a2 = str.indexOf("l", );// 查找l的位置,從第3個開始查找
        System.out.println("e的位置為:" + a1);
        System.out.println("l的位置為:" + a2);
    }
    /**
     * 去掉字元串左右空格
     */
    public static void totrim() {
        System.out.println("=========去掉字元串左右空格========");
        String str = "helloWorld";
        String str1 = "       hello         ";
        System.out.println("去掉左右空格後輸出:" + str1.trim());
    }
    /**
     * 字元串的截取
     */
    public static void tosubstring() {
        System.out.println("=========字元串的截取========");
        String str = "helloWorld";
        System.out.println("截取後的字元為:" + str.substring(, ));// 截取[0,3)個位置的内容
        System.out.println("從第3個位置開始截取:" + str.substring());// 從第3個位置開始截取[2,end]
    }
    /**
     * 按照指定的字元串拆分字元,拆分的資料将以字元串數組的形式傳回
     */
    public static void tosplit() {
        System.out.println("=========按照指定的字元串拆分字元,拆分的資料将以字元串數組的形式傳回========");
        String str = "helloWorld";
        String s[] = str.split("e");// 按hello中的e進行字元串拆分
        for (int i = ; i < s.length; i++) {
            System.out.println("拆分後結果為:" + s[i]);
        }
    }
    /**
     * 将字元串進行大小寫轉換
     */
    public static void tochange() {
        System.out.println("=========将字元串進行大小寫轉換========");
        String str = "helloWorld";
        System.out.println("将\"hello\"轉換成大寫為:" + str.toUpperCase());// 将hello轉換成大寫
        System.out.println("将\"HELLO\"轉換成大寫為:" + str.toUpperCase().toLowerCase());// 将HELLO轉換成小寫
    }
    /**
     * 判斷是否以指定的字元串開頭或者結尾
     */
    public static void tostartsWithOrendWith() {
        System.out.println("=========判斷是否以指定的字元串開頭或者結尾========");
        String str = "helloWorld";
        if(str.startsWith("he"))//判斷字元串是否以he開頭
        {
            System.out.println("字元串是以he開頭");
        }
        if(str.endsWith("lo"))
        {
            System.out.println("字元串是以lo結尾");
        }
    }
    /**
     * 兩個String類型内容比較
     */
    public static void toequals() {
        System.out.println("=========兩個String類型内容比較========");
        String str = "helloWorld";
        String str3="world";
        if(str.equals(str3))
        {
            System.out.println("這倆個String類型的值相等");
        }
        else
            System.out.println("這倆個String類型的不值相等");
    }
    /**
     * 兩個字元串不區分大小寫進行比較
     */
    public static void toequalslgnoreCase() {
        System.out.println("=========兩個字元串不區分大小寫進行比較========");
        String str = "12hell3oWorld...";
        String str4="12HELL3OWORlD...";
        if(str.equalsIgnoreCase(str4)) {
            System.out.println("忽略大小寫比較值相等");
        }
    }
    /**
     * 将一個指定得到字元串替換成其他字元串
     */
    public static void toreplaceAll() {
        System.out.println("=========将一個指定得到字元串替換成其他字元串========");
        String str = "helloWorld";
        String str5=str.replaceAll("l", "a");
        System.out.println("替換後的結果為:"+str5);
    }

    /**
     * 測試string的join(a,b)方法,将a作為連接配接符号,使得b數組中的元素連接配接起來,傳回一個字元串
     */
    public static void testjoin(){
        System.out.println("====join(a,b)方法,将a作為連接配接符号,使得b數組中的元素連接配接起來,傳回一個字元串====");
        String [] tmpStr={"abc","def","ghi"};
        String jn = String.join("-", tmpStr);
        System.out.println(jn);
    }

    public static void main(String[] args) {
        tocharyArry();
        tocharAt();
        tobyte();
        tolength();
        toindexOf();
        totrim();
        tosubstring();
        tosplit();
        tochange();
        tostartsWithOrendWith();
        toequals();
        toequalslgnoreCase();
        toreplaceAll();
        testjoin();
    }
}