如何合并plist中的两个数组?

发布于 2024-09-06 23:09:35 字数 113 浏览 3 评论 0原文

我有一个包含两个字符串数组的 plist。我想合并这两个数组。我尝试选择一个数组中的所有字符串并复制到另一个数组,但我无法选择多个项目。我不想以编程方式执行此操作。我在 Mac 上使用 xcode。有什么想法吗?

I have a plist with two string arrays. I want to merge these two arrays. I tried selecting all the strings in one array and copying to the other, but I cant select multiple items. I don't want to do this programmatically. I'm on a Mac using xcode. Any thoughts?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉态萌生 2024-09-13 23:09:35

只需将 PList 文件编辑为文本(上下文菜单,“作为纯文本文件打开”“源代码文件”)并复制相关项目即可。

Just edit the PList files as text (context menu, "Open as plain text file" or "Source code file") and copy the relevant items in.

芸娘子的小脾气 2024-09-13 23:09:35

将 plist 保存为 XML 格式(如果尚未保存),然后将其作为文本打开。如果您了解 XML,那么将所有字符串节点从一个数组移动到另一个数组是非常简单的,然后只需删除不需要的数组节点即可。

Save the plist in XML format if it isn't already, then open it as text. If you understand XML, it's pretty straightforward to move all the string nodes from one array to the other, then just remove the unwanted array node.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文