split(字串方法)

2022-06-11 11:48:10 字數 473 閱讀 7648

用於把乙個字串分割成字串陣列。

返回值:乙個字串陣列,不包括 sep 自身

引數:string.split(sep,many)

sep必需。字串或正規表示式,從該引數指定的地方分割 stringobject。

many

可選。該引數可指定返回的陣列的最大長度。如果設定了該引數,返回的子串不會多於這個引數指定的陣列。如果沒有設定該引數,整個字串都會被分割,不考慮它的長度。

example:

乙個引數

"

hello

".split("") //

可返回 ["h", "e", "l", "l", "o"]

兩個引數

"

hello

".split("", 3) //

可返回 ["h", "e", "l"]

split方法拆分字串

使用split 時應注意檢查最後乙個分隔符後面有無內容,否則最終分割出的陣列元素個數有可能與預期得到的個數不相符,導致異常!string str 1,2,string list1 str.split string list2 str.split 1 string list3 stringutils....

使用 Split 方法分析字串

列子一 class teststringsplit string text one ttwo three four,five six seven system.console.writeline original text text string words text.split delimiter...

split分割字串

string tmp weekcode.split new char string yr tmp 0 string wk tmp 1 string tmp regex.split eachl,error regexoptions.ignorecase 用字串來分割 error 把 以 error 為...