How I can handle this error, I try to get ascii number of every character in string but I can't convert character back to string in order to check symbol whether it necessary?
Here is my code
var n = "KNjNKJbbsibdcjkdcn___*(&0786"
let r = n.characters.count
for i in stride(from: 0, to: r, by: 1) {
let t = n.characters.index(n.startIndex, offsetBy: i)
String?(n[t])
}
In output should be separated character in string type.