美文网首页
swift 字符串切割

swift 字符串切割

作者: __Objc | 来源:发表于2016-07-28 15:04 被阅读158次

    将string字符串转换为array数组
    NSArray *array = [str componentsSeparatedByString:@","];--分隔符

    将array数组转换为string字符串

    NSString *str = [array componentsJoinedByString:@","];--分隔符

    相关文章

      网友评论

          本文标题:swift 字符串切割

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