Java中的字串

來源:互聯網
上載者:User

標籤:不能   printf   區分大小寫   for   預設   順序   oca   integer   stat   

以下內容引用自http://wiki.jikexueyuan.com/project/java/strings.html:

字串,它被廣泛應用於Java編程,是一個字元序列。在Java程式設計語言中,字串是對象。

Java平台提供了String類來建立和操作字串。

一、建立字串

最直接的方式來建立一個字串是這樣寫的:

String greeting = "Hello world!";

當建立一個字串時,編譯器在這種情況下用它的值建立一個String對象,如:"Hello world!‘。

任何其他對象可以通過使用new關鍵字,並通過建構函式建立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等於17:

public class StringDemo {   public static void main(String args[]) {      String palindrome = "Dot saw I was Tod";      int len = palindrome.length();      System.out.println( "String Length is : " + len );   }}//這將產生以下結果:String Length is : 17

三、連接字串

String類包括用於串連兩個字串的方法:

string1.concat(string2);

這返回一個新的字串,即在string1結尾處添加string2。還可以使用concat()方法連接字串,如:

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

字串更常使用“+”運算子串連在一起,如:

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

這將產生:"Hello, world!"

看看下面的例子:

public class StringDemo {   public static void main(String args[]) {      String string1 = "saw I was ";      System.out.println("Dot " + string1 + "Tod");   }}//這將產生以下結果:Dot saw I was Tod

四、建立格式化字串

已經有printf()和format()方法來列印輸出格式的數字。String類有一個等價的方法format(),它返回一個String對象,而不是一個PrintStream對象。

使用字串的靜態format()方法允許建立可重複使用的格式化字串,而不是一次性的print語句。例如,如果代替以下方法:

System.out.printf("The value of the float variable is " +                  "%f, while the value of the integer " +                  "variable is %d, and the string " +                  "is %s", floatVar, intVar, stringVar);

可以這樣寫:

String fs;fs = String.format("The value of the float variable is " +                   "%f, while the value of the integer " +                   "variable is %d, and the string " +                   "is %s", floatVar, intVar, stringVar);System.out.println(fs);

五、String方法

這裡是由String類支援的方法列表:

方法 描述
char charAt(int index)  返回指定索引處的字元。
int compareTo(Object o)  將這個字串與另一個對象比較。
int compareTo(String anotherString) 比較兩個字串的字典順序。
int compareToIgnoreCase(String str)  比較兩個字串按字典順序,不區分大小寫差異。
String concat(String str) 將指定的字串串聯到這個字串的結尾。
boolean contentEquals(StringBuffer sb)  返回true若且唯若該字串代表相同的字元序列作為指定的StringBuffer。
static String copyValueOf(char[] data)  返回表示所指定的數組中的字元序列的字串。
static String copyValueOf(char[] data, int offset, int count) 返回表示所指定的數組中的字元序列的字串。
boolean endsWith(String suffix)  測試此字串是否以指定的尾碼結束。
boolean equals(Object anObject) 比較此字串與指定的對象。
boolean equalsIgnoreCase(String anotherString) 比較這個字串到另一個字串,忽略大小寫考慮。
byte getBytes()  將此String解碼使用平台的預設字元集,並將結果儲存到一個新的位元組數組中的位元組序列。
byte[] getBytes(String charsetName 將此String解碼使用指定的字元集的位元組序列,並將結果儲存到一個新的位元組數組。
void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) 從這個字串複製字元到目標字元數組。
int hashCode() 為這個字串返回一個雜湊碼。
int indexOf(int ch)  返回此字串指定字元第一次出現處的索引。
int indexOf(int ch, int fromIndex)  返回索引這個字串中指定字元第一次出現處,指定索引處開始搜尋。
int indexOf(String str) 返回此字串指定子字串的第一次出現處的索引。
int indexOf(String str,int fromIndex) 返回這個字串中指定子字串的第一次出現處的索引,從指定的索引處開始。
String intern() 返回字串對象的正常化表示。
int lastIndexOf(int ch)  返回此字串指定字元最後一次出現處的索引。
int lastIndexOf(int ch, int fromIndex)  返回此字串指定字元最後一次出現處的索引,從指定索引開始向後搜尋。
int lastIndexOf(String str) 返回此字串指定子字串的最右邊出現處的索引。
int lastIndexOf(String str, int fromIndex)  返回索引這個字串中指定子字串的最後出現處,從指定的索引開始處向後搜尋。
int length()  返回此字串的長度。
boolean matches(String regex) 判斷此字串是否與給定的Regex匹配。
boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)  測試兩個字串的地區等於。
boolean regionMatches(int toffset, String other, int ooffset, int len) 測試兩個字串的地區都是相等的。
String replace(char oldChar, char newChar) 返回從newChar更換oldChar所有出現在此字串中產生一個新的字串。
String replaceAll(String regex, String replacement) 替換此字串中給定的Regex與給定替換相匹配的每個子字串。
String replaceFirst(String regex, String replacement)  替換此字串匹配給定的Regex給定替換第一個子字串。
String[] split(String regex)  分割圍繞給定的Regex匹配的這個字串。
String[] split(String regex, int limit)  分割圍繞給定的Regex匹配的這個字串。
boolean startsWith(String prefix) 測試此字串是否以指定的首碼開頭。
boolean startsWith(String prefix, int toffset) 測試此字串是否以指定索引開始的指定首碼開始。
CharSequence subSequence(int beginIndex, int endIndex) 返回一個新的字元序列,這個序列的子序列。
String substring(int beginIndex) 返回一個新的字串,它是此字串的一個子字串。
String substring(int beginIndex, int endIndex) 返回一個新的字串,它是此字串的一個子字串。
char[] toCharArray()  這個字串轉換為一個新的字元數組。
String toLowerCase() 將所有在此字串中的字元使用預設語言環境的規則小寫。
String toLowerCase(Locale locale) 將所有在此字串中的字元使用給定Locale的規則小寫。
String toString() 這個對象(它已經是一個字串!)返回字串形式(這裡是自己本身)。
String toUpperCase()  使用預設語言環境的規則將此String中所有的字元轉換為大寫。
String toUpperCase(Locale locale)  使用給定Locale的規則將此String中所有的字元轉換為大寫。
String trim()  返回字串的一個副本,開頭和結尾的空格去除。
static String valueOf(primitive data type x)  返回傳遞的資料類型參數的字串表示形式。

 

測試工程:https://github.com/easonjim/5_java_example/tree/master/javabasicstest/test9

Java中的字串

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.