使用POS函数来判断相应的字符的位置,先后截取他们。
如:
str1:='1234.dgff';
i := pos('.',str1);
if i >0 then begin
str2 := copy (str1,1,i-1);
str3 := copy (str1,pos+1,length(str1)-i);
end;
用pos函数判断相应字符串的分隔符,再截取他们
例:分隔符为‘,’
str:='home.htm,index.htm';
I:=pos(',',str);
if i>0 then
begin
str1:=copy(str,1,i-1);
str2:=copy(str,i+1,length(str)-i);
end;