Java入門教程四(字符串處理)

Java 語言的文本數據被保存爲字符或字符串類型。字符及字符串的操做主要用到 String 類和 StringBuffer 類,如鏈接、修改、替換、比較和查找等。php

定義字符串

直接定義字符串

直接定義字符串是指使用雙引號表示字符串中的內容,例如"Hello Java"、"Java 編程"等java

String helloWorld ="Hello World";

使用 String 類定義

在 Java 中每一個雙引號定義的字符串都是一個 String 類的對象。所以,能夠經過使用 String 類的構造方法來建立字符串,該類位於 java.lang 包中。正則表達式

String helloWorld =new String("Hello World");

字符串的鏈接

經過字符串鏈接,能夠將兩個或多個字符串、字符、整數和浮點數等類型的數據連成一個更大的字符串。編程

使用鏈接運算符

「+」運算符是最簡單、最快捷,也是使用最多的字符串鏈接方式。在使用「+」運算符鏈接字符串和 int 型(或 double 型)數據時,「+」將 int(或 double)型數據自動轉換成 String 類型。數組

int i=10;
String helloWorld="Hello World 第"+i+"次出如今文章中";

使用 concat() 方法

String 類的 concat() 方法實現了將一個字符串鏈接到另外一個字符串的後面。app

String hello = "Hello";
String world = "World";
String helloWorld = hello.concat(world);

獲取字符串長度

使用 String 類的 length() 方法code

String hello = "Hello World";
System.out.println(hello.length());//輸出11

轉換大小寫

toLowerCase() 方法能夠將字符串中的全部字符所有轉換成小寫,toUpperCase() 則將字符串中的全部字符所有轉換成大寫,非字母的字符不受影響。對象

String helloWorld="Hello World";
System.out.println(helloWorld.toLowerCase());    //輸出:helloworld
System.out.println(helloWorld.toUpperCase());    //輸出:HELLOWORLD

去除空格

使用 String 類提供的 trim() 方法去掉首尾空格索引

String hello=" hello ";
System.out.println(hello.trim());//去掉首尾空格後hello

字符串截取

String 類的 substring() 方法用於對字符串進行提取,該方法主要有兩種重載形式。字符串

substring(int beginIndex)

從索引位置開始至結尾處的字符串部分。調用時,括號中是須要提取字符串的開始位置,方法的返回值是提取的字符串。

String helloWorld="Hello World";
String world=helloWorld.substring(6);
System.out.println(world);    //輸出:World

substring(int beginIndex,int endIndex)

beginIndex 表示截取的起始索引,截取的字符串中包括起始索引對應的字符;endIndex 表示結束索引,截取的字符串中不包括結束索引對應的字符,對於開始位置 beginIndex, Java 是基於字符串的首字符索引爲 0 處理的,可是對於結束位置 endIndex,Java 是基於字符串的首字符索引爲 1 來處理的

String helloWorld="Hello World"; 
System.out.println(helloWorld.substring(2,10));//輸出 llo Worl

分割字符串

String 類的 split() 方法能夠按指定的分割符對目標字符串進行分割,分割後的內容存放在字符串數組中。str.split(String sign)與str.split(String sign,int limit),str 爲須要分割的目標字符串;sign 爲指定的分割符,能夠是任意字符串;limit 表示分割後生成的字符串的限制個數,若是不指定,則表示不限制,直到將整個目標字符串徹底分割爲止。

String color="Red,Black,White,Yellow";
String[] arr1=color.split(",");//不限制元素個數
//arr1爲
//Red
//Black
//White
//Yellow
String[] arr2=Colors.split(",",3);    //限制元素個數爲3
//arr2爲
//Red
//Black
//White,Yellow

字符串的替換

String 類提供了 3 種字符串替換方法,分別是 replace()、replaceFirst() 和 replaceAll()

replace()

replace(String oldChar, String newChar) 方法用於將目標字符串中的指定字符(串)替換成新的字符(串)

String helloWorld="Hello Java";
System.out.println(words.replace("Java","World"));//輸出Hello World

replaceFirst()

replaceFirst(String regex, String replacement) 方法用於將目標字符串中匹配某正則表達式的第一個子字符串替換成新的字符串

String words="hello java,hello php";
System.out.println(words.replaceFirst("hello","你好 "));    //輸出:你好 java,hello php

replaceAll()

replaceAll(String regex, String replacement) 方法用於將目標字符串中匹配某正則表達式的全部子字符串替換成新的字符串

String words="hello java,hello php";
System.out.println(words.replaceAll("hello","你好 "));    //輸出:你好 java,你好 php

字符串的比較

比較字符串的經常使用方法有 3 個:equals() 方法、equalsIgnoreCase() 方法、 compareTo() 方法

equals()

equals() 方法將逐個地比較兩個字符串的每一個字符是否相同。對於字符的大小寫,也在檢查的範圍以內。

String a="a";
String b="b";
System.out.println(a.equals(b));    //輸出 false

equalsIgnoreCase()

equalsIgnoreCase() 方法的做用和語法與 equals() 方法徹底相同,惟一不一樣的是 equalsIgnoreCase() 比較時不區分大小寫

String a="ab";
String b="AB";
System.out.println(a.equals(b));    //輸出 true

compareTo()

compareTo() 方法用於按字典順序比較兩個字符串的大小,該比較是基於字符串各個字符的 Unicode 值。

String upperA="A";
String lowerA="a";
System.out.println(upperA.compareTo(lowerA));  //輸出爲-32

查找字符串

字符串查找分爲兩種形式:一種是在字符串中獲取匹配字符(串)的索引值,另外一種是在字符串中獲取指定索引位置的字符。分別有三個方法indexOf()、lastlndexOf()和charAt()

indexOf()

indexOf() 方法用於返回字符(串)在指 定字符串中首次出現的索引位置,若是能找到,則返回索引值,不然返回 -1。

str.indexOf(value)
str.indexOf(value,int fromIndex)

str 表示指定字符串;value 表示待查找的字符(串);fromIndex 表示查找時的起始索引,若是不指定 fromIndex,則默認從指定字符串中的開始位置(即 fromIndex 默認爲 0)開始查找。

String helloWorld="Hello Java";
int size=s.indexOf('v');    //size的結果爲8

lastlndexOf()

lastIndexOf() 方法用於返回字符(串)在指定字符串中最後一次出現的索引位置,若是能找到則返回索引值,不然返回 -1。

str.lastIndexOf(value)
str.lastlndexOf(value, int fromIndex)

lastIndexOf() 方法的查找策略是從右往左查找,若是不指定起始索引,則默認從字符串的末尾開始查找。

String words="today,monday,Sunday";
System.out.println(words.lastIndexOf("day"));//輸出16

charAt()

charAt() 方法能夠在字符串內根據指定的索引查找字符

String words="today,monday,sunday";
System.out.println(words.charAt(0));    //結果:t

StringBuffer類

除了經過 String 類建立和處理字符串以外,還可使用 StringBuffer 類來處理字符串。StringBuffer 類能夠比 String 類更高效地處理字符串。StringBuffer 類是可變字符串類,建立 StringBuffer 類的對象後能夠隨意修改字符串的內容。每一個 StringBuffer 類的對象都可以存儲指定容量的字符串,若是字符串的長度超過了 StringBuffer 類對象的容量,則該對象的容量會自動擴大。

建立 StringBuffer

StringBuffer 類提供了 3 個構造方法來建立一個字符串
StringBuffer() 構造一個空的字符串緩衝區,而且初始化爲 16 個字符的容量。
StringBuffer(int length) 建立一個空的字符串緩衝區,而且初始化爲指定長度 length 的容量。
StringBuffer(String str) 建立一個字符串緩衝區,並將其內容初始化爲指定的字符串內容 str,字符串緩衝區的初始容量爲 16 加上字符串 str 的長度。

StringBuffer str1=new StringBuffer();//定義一個空的字符串緩衝區,含有16個字符的容量
StringBuffer str2=new StringBuffer(10);//定義一個含有10個字符容量的字符串緩衝區
StringBuffer str3=new StringBuffer("HelloWorld");//定義一個含有(16+4)的字符串緩衝區,"HelloWorld"爲10個字符

追加字符串

StringBuffer 類的 append() 方法用於向原有 StringBuffer 對象中追加字符串。追加內容到當前 StringBuffer 對象的末尾,相似於字符串的鏈接。

StringBuffer buffer=new StringBuffer("hello,");    //建立一個 StringBuffer 對象
String str="World!";
buffer.append(str);     //向 StringBuffer 對象追加 str 字符串
System.out.println(buffer.substring(0));    //輸出:Hello,World!

替換字符

StringBuffer 類的 setCharAt() 方法用於在字符串的指定索引位置替換一個字符。StringBuffer 對象.setCharAt(int index, char ch);

StringBuffer sb=new StringBuffer(「hello");
sb.setCharAt(1,'E');
System.out.println(sb);    //輸出:hEllo

反轉字符串

StringBuffer 類中的 reverse() 方法用於將字符串序列用其反轉的形式取代。StringBuffer 對象.reverse();

StringBuffer sb=new StringBuffer("java");
sb.reverse();
System.out.println(sb);    //輸出:avaj

刪除字符串

StringBuffer 類提供了 deleteCharAt() 和 delete() 兩個刪除字符串的方法

deleteCharAt()

deleteCharAt() 方法用於移除序列中指定位置的字符,StringBuffer 對象.deleteCharAt(int index);

StringBuffer sb=new StringBuffer("She");
sb.deleteCharAt(2);
System.out.println(sb);    //輸出:Se

delete()

delete() 方法用於移除序列中子字符串的字符,StringBuffer 對象.delete(int start,int end);start 表示要刪除字符的起始索引值(包括索引值所對應的字符),end 表示要刪除字符串的結束索引值(不包括索引值所對應的字符)。

StringBuffer sb=new StringBuffer("hello jack");
sb.delete(2,5);
System.out.println(sb);    //輸出:he jack
相關文章
相關標籤/搜索