delphi 中的 split 函數 類似於 vb中的 split函數
type
userarray=array of string;
function split(s:string;dot:char):userarray;
var
str:userarray;
i
begin
i:=
j:=
SetLength(str
while Pos(dot
begin
str[j]:=copy(s
i:=pos(dot
s[i
j:=j+
end;
str[j]:=copy(s
result:=str;
end;
From:http://tw.wingwit.com/Article/program/Delphi/201311/24696.html