Java字串的分割方法

2021-07-03 19:47:41 字數 861 閱讀 6944

2023年7月14日 21:40:09

今天在工作中遇到了的乙個關於string字串的分割問題:

string  example1="a,b,c,d,,e ";

現在要將字串以逗號分隔開,形成6個單獨的字串,開始想到的方法就是substring方法,但是太笨。於是去查詢,搜尋到split方法

string.split();使用方法:

一共搜尋到6中分割的方法,今天用到第一種

1) public string split(params char separator)

以separator字元分割

2) public string split(char separator, int count)

以separator分割,count表示分割字元字串的個數,比如分割example1就會生成兩個字串 "a" , "b,c,d,,e"

3) public string split(char separator, stringsplitoptions options)

options可以是removeepmtyentires(去除空白字串)

none(保留空元素)

4) public string split(string separator, stringsplitoptions options)

5) public string split(char separator, int count, stringsplitoptions options)

6) public string split(string separator, int count, stringsplitoptions options)

456暫時沒有用到,不做闡述。

java字串分割

使用split 方法可以使字串按指定的分割字元或字串對內容進行分割,並將結果存放在字串陣列中。1 split string sign 該方法可根據給定的分割對字串進行拆分。語法 str.split string sign 其中sign為分割字串的分割符。2 split string sign,int...

字串的分割方法

package cn.learn.day08.demo02 分割字串的方法 public string split string regex 按照引數的規則,將字串切分成為若干部分。注意事項 split方法的引數其實是乙個 正規表示式 今後學習。今天要注意 如果按照英文句點 進行切分,必須寫 兩個反...

分割字串方法彙總

第一種方法 開啟vs.net新建乙個控制台專案。然後在main 方法下輸入下面的程式。string s abcdeabcdeabcde string sarray s.split c foreach string i in sarray console.writeline i.tostring 輸出...