码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 字符串连接

时间:2015-11-29 19:40:45      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

// 使用+直接相加
var i = 100
var str = "Hello"
str = str + " jinpangpang"
// 可以使用这种方式连接整值
str = "\(str)\(i),test,\(200)"

// 输出结果 Hello jinpangpang100,test,200
print(str)

 

Swift 字符串连接

标签:

原文地址:http://www.cnblogs.com/-jpp/p/5005131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!