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

Swift 字符串的拼接

时间:2018-02-23 17:10:00      阅读:4263      评论:0      收藏:0      [点我收藏+]

标签:ring   利用   let   字符串   post   bbb   tor   str   数组   

字符串的连接主要有两种方式:

  1、直接在字符串后面添加字符串;在Swift中利用+直接将字符串拼接在一起。如:

    let str = "Hello"

          let str2 = " world!"

          let str3 = str + str2

            print("str3 = \(str3)")

    输出结果为:Hello world!

  2、将字符串数组拼接成一个字符串,使用joined方法将字符串数组里的元素拼接在一起成为一个新的字符串

    let array11: [String] = ["aaa","bbb", "ccc"]

         //将数组中的元素拼接成字符串

          let arrayStr : String! = array11.joined(separator: ",")

            print("arrayStr = \(arrayStr!)")

 

Swift 字符串的拼接

标签:ring   利用   let   字符串   post   bbb   tor   str   数组   

原文地址:https://www.cnblogs.com/liYongJun0526/p/8462456.html

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