将字符串转换为Swift中的数组

发布于 2025-01-25 12:22:45 字数 495 浏览 3 评论 0原文

如何将一个数组数组的字符串转换为类型[[String]]的实际数组?

例如:

theString =  "[["Test1", "String"], ["Test2", "String"]]" 

然后,转换后的数组应如下:

converted = [["Test1", "String"], ["Test2", "String"]]

有什么办法可以做到吗?

我不能使用thestring.components(分隔:“,”)array(thestring),我尝试了这两者,并且没有给出预期的结果。

我在Xcode 13.2.1上使用Swift 5。

任何帮助都将受到赞赏!

How can I convert a string which is an array of arrays into an actual array of type [[String]]?

For example:

theString =  "[["Test1", "String"], ["Test2", "String"]]" 

then the converted array should be as below:

converted = [["Test1", "String"], ["Test2", "String"]]

Is there any way this can be done?

I cannot use theString.components(separatedBy: ", ") or Array(theString), I tried both of these and it does not give the expected result.

I am using Swift 5 on Xcode 13.2.1.

Any help is appreciated!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文