delphi字符串stringlist数组转换
delphi中有没有一种简单的方法将字符串数组转换为tstringlist?
Is there a simple way in delphi to convert an array of strings to a tstringlist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建字符串列表后,您只需调用
AddStrings()< /代码>
。
或者,对于不支持接受数组的
AddStrings()
重载的旧版本 Delphi,您可以自行推出。使用开放数组参数可以为调用者提供最大的灵活性。
Once you have created the string list, you can simply call
AddStrings()
.Or for older versions of Delphi that do not support the
AddStrings()
overloads that accept arrays, you can roll your own.Using an open array parameter affords the maximum flexibility for the caller.
对于 Delphi 的预通用版本,您可以使用如下内容:
For pre-generic versions of Delphi, you can use something like this:
使用最新的 Delphi 版本,您可以像这样调用 TStrings 和 TstringList 类的“addStrings”方法:
您可以在以下位置找到有关此方法的文档:
https://docwiki.embarcadero.com/Libraries/Sydney/ en/System.Classes.TStrings.AddStrings
With recent Delphi version you can call "addStrings" method of a TStrings and TstringList classes like this:
Yuo can find documentation about this method at:
https://docwiki.embarcadero.com/Libraries/Sydney/en/System.Classes.TStrings.AddStrings