码迷,mamicode.com
首页 > 其他好文 > 详细

split函数

时间:2014-09-09 20:06:19      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:os   io   ar   cti   sp   on   c   res   type   

type 
userarray=array of string;

function split(s:string;dot:char):userarray; 
var 
str:userarray; 
i,j:integer; 
begin 
i:=1; 
j:=0; 
SetLength(str, 255); 
while Pos(dot, s) > 0 do //Pos返回子串在父串中第一次出现的位置. 
begin 
str[j]:=copy(s,i,pos(dot,s)-i); 
i:=pos(dot,s)+1; 
s[i-1] := chr(ord(dot)+1); 
j:=j+1; 
end; 
str[j]:=copy(s,i,strlen(pchar(s))-i+1); 
result:=str; 
end; 

split函数

标签:os   io   ar   cti   sp   on   c   res   type   

原文地址:http://www.cnblogs.com/azhqiang/p/3963218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!