美文网首页
Swift 字符串常见操作

Swift 字符串常见操作

作者: _发强 | 来源:发表于2021-08-13 22:32 被阅读0次

执行代码:

let hello = "hello" // 常量,不可变。
var hello1 = "hello"    //变量,可变。
print(hello == hello1)
hello1 += "2"
hello1.append(",")
print(hello)
print(hello1)

for s in hello {
    print(s)
}


// 字符串插值,\() 里面的运算代码会执行结果。
let str = "6 * 7 = \(6*7)"
print(str)

执行结果:

true
hello
hello2,
h
e
l
l
o
6 * 7 = 42

相关文章

网友评论

      本文标题:Swift 字符串常见操作

      本文链接:https://www.haomeiwen.com/subject/voeamltx.html