将长字符串转换为 Tstringlist
我有以下字符串 A 类型字符串。
A = 'flagA=0,flagB=0,flagC=1'
我还想
B:TStringList.
将其转换为 TStringList,以便通过检查 B.Values['flagC'] 来查看 flagC 是否设置为 1。
也许我需要将字符串拆分为 '=' 和 ',' ?
欢迎任何其他想法,谢谢。
I have the following string A type string.
A = 'flagA=0,flagB=0,flagC=1'
I also have
B:TStringList.
I want to convert it into TStringList
in order to see if the flagC is set to 1 by inspecting B.Values['flagC']
.
Perhaps I need to split the string under '=' and ',' ?
Any other ideas are welcome thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效
This should work
您可以使用该代码,
您可以像这样使用 edit1
you can use that code
you can use edit1 like this