筆記 將字串轉換成陣列的方法

2021-10-04 01:54:31 字數 820 閱讀 8166

split( string$pattern, string$string[, int$limit= -1 ] ) : array

使用正則表達匹配的方式將陣列分割。

適用版本php4, php5,自php5.3.0以後不建議使用,php7.0.0及以後版本完全移除。

explode( string$delimiter, string$string[, int$limit= php_int_max ] ) : array

以字串為分隔符分割陣列,php5.1.0增加$limit引數:定義返回陣列的最大長度。

適用版本php4,php5,php7。

str_split( string$string[, int$split_length= 1 ] ) : array

按子長度分割字串組成陣列。

適用版本php5, php7。

preg_split( string$pattern, string$subject[, int$limit= -1 [, int$flags= 0 ]] ) : array

按正規表示式匹配的方式將字串劃分為陣列。

適用版本php 4, php 5, php 7。

參考:

字串轉換成陣列ls

function explodetoarr byval sinput as string,byval sdelimiter as string as variant dim soutput as string dim aoutput as string dim npos as integer dim...

將資料型別轉換成字串,將字串轉換成資料型別

方法1 採用靜態方法 int a 123456789 string str string.valueof a 方法2 用包裝類轉換 float a 2.33f string str float.tostring a double a 2.33d string str double.tostring ...

將陣列轉換成字串

toarray 摘要 從 system.collections.generic.ienumerable建立乙個陣列。引數 source 要從其建立陣列的 system.collections.generic.ienumerable。型別引數 tsource source 中的元素的型別。返回結果 乙...