-1
let amount = "73.45"
我想要四個不同的常量(字符串,而不是字符)與此字符串中的每個數字。理想的情況是:在Swift 2中訪問字符串中的每個字符
let amount1 = amount[0] // 7
let amount2 = amount[1] // 3
let amount3 = amount[3] // 4
let amount4 = amount[4] // 5
我已搜查,找不到任何工作,我要麼得到整個字符串或字符串的字符。任何意見將是有益的 - 新Xcode和迅速
謝謝你,這對我幫助很大+1 – cakes88