标签: arrays swift string
我有一个字符串变量,例如,其中包含类似"[\"text\", \"more text\", \"even more text\"]"的字符串。字符串包含一个数组,但是变量不是[String]类型,而是String类型。
"[\"text\", \"more text\", \"even more text\"]"
[String]
String
有没有办法将此字符串转换为数组?我也不想在使用.components(separatedBy: ", ")之类的东西时做任何事情,因为数组的内容可能包含逗号和空格。
.components(separatedBy: ", ")