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列表控件tlistview定位到某一行

Delphi多媒体函数

Delphi arp攻击代码

Delphi 播放声音 建议采用 异步方式,比较流畅

Delphi屏蔽alt+tab键代码

Delphi edit只允许输入数字

Delphi 10.3.x 截取字符串函数substring 和copy()常用字串符处理函数用法

Delphi 判断端口(port)是否被占用

Delphi 文字的高度与宽度: canvas.textextent

Delphi删除文件

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



打赏

取消

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

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

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

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

评论

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