美文网首页
字符串分割

字符串分割

作者: lalala1112389 | 来源:发表于2017-11-05 17:23 被阅读0次

    1.需求:如果有字符出串 weixin:/app/wx976a85147682cb65/SmartAgency.pdf ,我们要对其进行分割,得到SmartAgency 和 pdf

    let array = self?.pdfFilePath.components(separatedBy: "/")
    let pdfFile = array?[(array?.count)!-1]
     let array1 = pdfFile?.components(separatedBy: ".")
     let fileName = array1?[0]
     let fileType = array1?[1]
    

    此时得到SmartAgency 和 pdf。

    相关文章

      网友评论

          本文标题:字符串分割

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