Delphi SplitString 字符串分割成字符串组


本文整理自网络,侵删。

 
function SplitString(Source, Deli: string): TStringList;      //把字符串分割成字符串组
var
  EndOfCurrentString: byte;
  StringList: TStringList;
begin
  StringList := TStringList.Create;
  while Pos(Deli, Source) > 0 do
  begin
    EndOfCurrentString := Pos(Deli, Source);
    StringList.add(Copy(Source, 1, EndOfCurrentString - 1));
    Source := Copy(Source, EndOfCurrentString + length(Deli), length(Source) - EndOfCurrentString);
  end;
  Result := StringList;
  StringList.Add(Source);
end;

简单用法:
procedure TForm1.FormCreate(Sender: TObject);
begin
Caption:=SplitString('123==456==789','==').Strings[1];
end;

相关阅读 >>

Delphi 几个dataset数据导出到xml word excel txt html的函数

Delphi 静态/动态调用dl

Delphi判断mssql数据库中表格是否存在? 如何批量创建表格?

Delphi idhttp1post上传图片

Delphi解决dll注入桌面卡的问题

Delphi代码变异加密工具

Delphi thread.queue与synchronize的区别

Delphi tzipfile 用法

Delphi cxgrid中回车键光标移到下列

Delphi winapi: getparent - 获取指定窗口的父窗口句柄

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...