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。
网友评论