解析保存到文本文件的字符串
我将 Cocoa 应用程序中的数据保存到文本文件中。文本文件包含的信息如下所示:
foo1 -> foo2
blah -> lwjef
hi -> bye
hello -> goodbye
现在每行的第一部分由用户给出,但我需要获取每行在 ->
之后的部分。例如,如果用户输入foo1
,我想在解析文本文件后输出foo2
。有谁知道该怎么做?
I save pieces of data from my Cocoa application into a text file. The text file contains information as shown:
foo1 -> foo2
blah -> lwjef
hi -> bye
hello -> goodbye
Now the first part of each row is given by the user, but I need to get the part of each row after the ->
. For example, if the user enters foo1
, I want to output foo2
after parsing the text file. Does anyone know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解析一次:
然后查询密钥:
但是,如果数据最初来自您自己的应用程序,您可能应该这样做,而不是自定义(且不安全)的字符串格式:
Parse once:
Then query for keys:
However, if the data originally came from your own application in the first place you should probably do this, instead of a custom (and insecure) string format: