我想在nsmutable数组中只得到一个反斜杠

时间:2018-04-17 08:58:10

标签: arrays swift string

我想在数组中传递字符串时只得到一个反斜杠“\”,但它给了我两个“\\”反斜杠,你可以看到下面的结果:

var arr = NSMutableArray()
let myText = "2018\\/04\\/16"
print(myText, "String result is proper")
arr = [myText]
print(arr, "Array result not proper")

这是我的控制台结果:

2018\/04\/16 String result is proper

("2018\\/04\\/16") Array result not proper   

当我打印(arr)这是我的数组结果时,我想只得到“2018/04/16”

1 个答案:

答案 0 :(得分:1)

  

我已更新您的代码。请尝试这个(你不需要额外的斜线)

var arr = NSMutableArray()
let myText = "2018/04/16"
print(myText, "String result is proper")
arr = [myText]
print(arr, "Array result not proper")
  

请检查值..它就像你想要的那样:   enter image description here