java 字串查詢函式

2021-07-24 03:29:58 字數 499 閱讀 5885

經常會用到查詢字串操作,下面的函式可以一次擷取到想要的字串。

src:源串

keyset:用於界定結果的關鍵字集合,是乙個字串,每個關鍵字以\r\n間隔。

public static void main(string args) 

public static string find(string src,string keyset)

src=src.substring(0,src.indexof(keys[keys.length-1]));

return src;

}public static string lastfind(string src, string keyset)

src=src.substring(src.lastindexof(keys[keys.length-1]) +keys[keys.length-1].length());

return src;

}

JAVA字串處理函式

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

JAVA字串常用函式

1 字串物件的建立 1 string str new string hello world 2 char c string str new string str 3 char c string str new string str,2,4 llo 2 可以使用 進行字串的鏈結,可以連線不同型別的 1...

Java字串常用函式

1 字串物件的建立 1 string str new string hello world 2 char c string str new string str 3 char c string str new string str,2,4 llo 2 可以使用 進行字串的鏈結,可以連線不同型別的 1...