JAVA中字串函式subString的用法小結

2021-07-25 11:25:36 字數 581 閱讀 1605

string str;

str=str.substring(int beginindex);擷取掉str從首字母起長度為beginindex的字串,將剩餘字串賦值給str;

str=str.substring(int beginindex,int endindex);擷取str中從beginindex開始至endindex結束時的字串,並將其賦值給str;

demo:

複製**

**如下:

class test 

} 執行結果:abcdefgh

複製**

**如下:

class test 

} 執行結果:123456789

下面是個典型例子:

複製**

**如下:

public class stringdemo

else

system.out.println("string /""+todelete+"/" not found");

}system.out.println(str);}}

關於oracle中字串的擷取 substr

昨天在工作中遇到了擷取字串問題的,特地的學習了一下substr函式,在此做個記錄 1 擷取不帶特殊欄位的某乙個特定字串 1 從字串左邊某乙個位置擷取到其後面多少位 select substr abcdefghijklmn 2,3 from dual 2 從字串左邊某乙個位置 包括一位 擷取到最後 s...

JAVA字串處理函式

1 substring 擷取字串 第一種是 string substring int startindex 第二種是 string substring int startindex,int endindex 2 concat 連線兩個字串 3 replace 替換 第一種形式用乙個字元在呼叫字串中所...

java 字串查詢函式

經常會用到查詢字串操作,下面的函式可以一次擷取到想要的字串。src 源串 keyset 用於界定結果的關鍵字集合,是乙個字串,每個關鍵字以 r n間隔。public static void main string args public static string find string src,s...