概述
let str = "123456"
for i in str {
let str1 = "" + String(i)
print(str1)
let num: Int = Int(str1)!+10
print(num)
}
打印:
1
11
2
12
3
13
4
14
5
15
6
16
let str = "123456"
for i in str.utf8 {
print(i)//Int
print(i+100)
}
打印:
49
149
50
150
51
151
52
152
53
153
54
154
最后
以上就是难过抽屉为你收集整理的ios swift String遍历 Int Character的全部内容,希望文章能够帮你解决ios swift String遍历 Int Character所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复