其他语言

位置:IT落伍者 >> 其他语言 >> 浏览文章

delphi中的split函数


发布日期:2018年06月11日
 
delphi中的split函数

delphi 中的 split 函数 类似于 vb中的 split函数

type

userarray=array of string;

function split(s:string;dot:char):userarray;

var

str:userarray;

ij:integer;

begin

i:=;

j:=;

SetLength(str );

while Pos(dot s) > do //Pos返回子串在父串中第一次出现的位置

begin

str[j]:=copy(sipos(dots)i);

i:=pos(dots)+;

s[i] := chr(ord(dot)+);

j:=j+;

end;

str[j]:=copy(sistrlen(pchar(s))i+);

result:=str;

end;

               

上一篇:基于Delphi的组件设计之简单实例

下一篇:Delphi7中快速得到本机IP地址