美文网首页
swift字符串切割

swift字符串切割

作者: 男人宫 | 来源:发表于2020-04-07 08:21 被阅读0次

    字符串切割 split

    • 我们需要切割某个字符串时可以用 split 方法,需要注意的是,返回的结果是个数组
    let str = "Hello,world !"
    print(str.split(separator: ","))
    
    // 输出:
    // ["Hello", "world !"]
    

    相关文章

      网友评论

          本文标题:swift字符串切割

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