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 分解链接主域名和文件名

Delphi xe6 grid试用结果

Delphi xe 泛型数组和splitstring处理数据

Delphi 中文字符串函数问题rightstr

Delphi线程的创建、挂起、激活与终止

Delphi实现关闭指定进程,自身防杀

Delphi 逐个分解后字符串加载到stringgrid1

Delphi 16进制字符串转原字符串

winapi 字符及字符串函数(8): ischarupper - 是否是个大写字母

Delphi idhashmessagedigest 获取文件md5

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



打赏

取消

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

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

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

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

评论

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