Java String類別


字串廣泛地應用在Java程式設計中,在Java中字串屬於對象,Java提供了String類別來建立和操作字串。


建立字串

建立字串最簡單的方式如下:

String greeting = "Hello world!";

在程式碼中遇到字串常數時,這裡的值是"Hello world!",編譯器會使用該值建立一個String物件。

和其它物件一樣,可以使用關鍵字和建構方法來建立String物件。

String類別有11種建構方法,這些方法提供不同的參數來初始化字串,例如提供一個字元陣列參數:

public class StringDemo{

   public static void main(String args[]){
      char[] helloArray = { 'h', 'e', 'l', 'l', 'o', '.'};
      String helloString = new String(helloArray);  
      System.out.println( helloString );
   }
}

以上實例編譯運行結果如下:

hello.

注意:String類別是不可改變的,所以你一旦建立了String對象,那它的值就無法改變了。 如果需要對字串做很多修改,那麼應該選擇使用StringBuffer & StringBuilder 類別。


字串長度


用於取得有關物件的資訊的方法稱為存取器方法。

String類別的一個存取器方法是length()方法,它會傳回字串物件包含的字元數。

下面的程式碼執行後,len變數等於14:

public class StringDemo {
    public static void main(String args[]) {
        String site = "www.php.cn";
        int len = site.length();
        System.out.println( "php中文网网址长度 : " + len );
   }
}

以上實例編譯執行結果如下:

php中文网网址长度 : 14

連線字串

String類別提供了連接兩個字串的方法:

string1.concat(string2);

傳回string2連接string1的新字串。也可以對字串常數使用concat()方法,如:

"My name is ".concat("php");

更常用的是使用'+'運算元來連接字串,如:

"Hello," + " world" + "!"

結果如下:

"Hello, world!"

下面是一個例子:

public class StringDemo {
    public static void main(String args[]) {     
        String string1 = "php中文网网址:";     
        System.out.println("1、" + string1 + "www.php.cn");  
    }
}

以上實例編譯運行結果如下:

1、php中文网网址:www.php.cn

建立格式化字串

#我們知道輸出格式化數字可以使用printf()和format()方法。 String類別使用靜態方法format()傳回一個String物件而不是PrintStream物件。

String類別的靜態方法format()能用來建立可重複使用的格式化字串,而不僅僅是用於一次列印輸出。如下圖:

System.out.printf("浮点型变量的的值为 " +
                  "%f, 整型变量的值为 " +
                  " %d, 字符串变量的值为 " +
                  "is %s", floatVar, intVar, stringVar);

你也可以這樣寫

String fs;
fs = String.format("浮点型变量的的值为 " +
                   "%f, 整型变量的值为 " +
                   " %d, 字符串变量的值为 " +
                   " %s", floatVar, intVar, stringVar);
System.out.println(fs);

String 方法

下面是String類別支援的方法,更多詳細,參考Java String API文件:

                    SN(序號)                    方法說明
                    1char charAt(int index)
傳回指定索引處的 char 值。
                    2int compareTo(Object o)
把這個字串和另一個物件比較。
                    3int compareTo(String anotherString)
按字典順序比較兩個字串。
                    4int compareToIgnoreCase(String str)
按字典順序比較兩個字串,不考慮大小寫。
                    5String concat(String str)
將指定字串連接到此字串的結尾。
                    6boolean contentEquals(StringBuffer sb)
當且僅當字串與指定的StringButter有相同順序的字元時候傳回真。
                    7static String copyValueOf(char[] data)
傳回指定數組中表示該字元序列的 String。
                    8static String copyValueOf(char[] data, int offset, int count)
傳回指定數組中表示該字元序列的 String。
                    9boolean endsWith(String suffix)
測試此字串是否以指定的後綴結束。
                    10boolean equals(Object anObject)
將此字串與指定的物件進行比較。
                    11boolean equalsIgnoreCase(String anotherString)
將此 String 與另一個 String 比較,不考慮大小寫。
                    12byte[] getBytes()
 使用平台的預設字元集將此 String 編碼為 byte 序列,並將結果儲存到一個新的 byte 陣列中。
                    13byte[] getBytes(String charsetName)
使用指定的字元集將此 String 編碼為 byte 序列,並將結果儲存到新的 byte 陣列中。
                    14void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
將字元從此字串複製到目標字元陣列。
                    15int hashCode()
傳回此字串的雜湊碼。
                    16int indexOf(int ch)
傳回指定字元在此字串中第一次出現處的索引。
                    17int indexOf(int ch, int fromIndex)
傳回在此字串中第一次出現指定字元處的索引,從指定的索引開始搜尋。
                    18int indexOf(String str)
 傳回指定子字串在此字串中第一次出現處的索引。
                    19int indexOf(String str, int fromIndex)
傳回指定子字串在此字串中第一次出現處的索引,從指定的索引開始。
                    20String intern()
 傳回字串物件的規範化表示形式。
                    21int lastIndexOf(int ch)
 傳回指定字元在此字串中最後一次出現處的索引。
                    22int lastIndexOf(int ch, int fromIndex)
傳回指定字元在此字串中最後一次出現處的索引,從指定的索引處開始進行反向搜尋。
                    23int lastIndexOf(String str)
傳回指定子字串在此字串中最右邊出現處的索引。
                    24int lastIndexOf(String str, int fromIndex)
 傳回指定子字串在此字串中最後一次出現處的索引,從指定的索引開始反向搜尋。
                    25int length()
傳回此字串的長度。
                    26boolean matches(String regex)
告知此字串是否符合給定的正規表示式。
                    27boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
測試兩個字串區域是否相等。
                    28boolean regionMatches(int toffset, String other, int ooffset, int len)
測試兩個字串區域是否相等。
                    29String replace(char oldChar, char newChar)
傳回一個新的字串,它是透過用 newChar 替換此字串中出現的所有 oldChar 得到的。
                    30String replaceAll(String regex, String replacement
使用給定的 replacement 替換此字串所有符合給定的正規表示式的子字串。
                    31String replaceFirst(String regex, String replacement)
 使用給定的 replacement 來取代此字串符合給定的正規表示式的第一個子字串。
                    32String[] split(String regex)
根據給定正則表達式的匹配拆分此字串。
                    33String[] split(String regex, int limit)
根據符合給定的正規表示式來拆分此字串。
                    34boolean startsWith(String prefix)
測試此字串是否以指定的前綴開始。
                    35boolean startsWith(String prefix, int toffset)
測試此字串從指定索引開始的子字串是否以指定前綴開始。
                    36CharSequence subSequence(int beginIndex, int endIndex)
 傳回一個新的字元序列,它是此序列的一個子序列。
                    37String substring(int beginIndex)
傳回一個新的字串,它是此字串的一個子字串。
                    38String substring(int beginIndex, int endIndex)
傳回一個新字串,它是此字串的一個子字串。
                    39char[] toCharArray()
將此字串轉換為一個新的字元陣列。
                    40String toLowerCase()
使用預設語言環境的規則將此 String 中的所有字元轉換為小寫。
                    41String toLowerCase(Locale locale)
 使用給定 Locale 的規則將此 String 中的所有字元轉換為小寫。
                    42String toString()
 傳回此物件本身(它已經是一個字串!)。
                    43String toUpperCase()
使用預設語言環境的規則將此 String 中的所有字元轉換為大寫。
                    44String toUpperCase(Locale locale)
使用給定 Locale 的規則將此 String 中的所有字元轉換為大寫。
                    45String trim()
傳回字串的副本,忽略前導空白和尾部空白。
                    46static String valueOf(primitive data type x)
傳回給定data type類型x參數的字串表示形式。
#