• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

swift截取字符串

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

swift3.0 使用String.Index来做位置索引,要想实现截取功能首先得获取到String.Index;

获取中间部分参数用Range<Index>即可;

let str:String = btn.currentTitle ?? ""

         let indes = str.index(str.startIndex, offsetBy: str.length - 1)

         let prefix = str.substring(to: indes)

         btn.setTitle(prefix + "▾", for: .normal)

举例从开始截取到倒数第二位。

let index = str.index(str.endIndex, offsetBy: -5)
        
    let suffix = str.substring(from: index)

截取倒数五位

2.富文本设置 (空格也会占位)

      guard let mingzi = model.name,let jieshao = model.bio else {

         return

      }

      let amountString = NSMutableAttributedString(string:"\(mingzi)/\(jieshao)")

      //设置字体颜色

      amountString.addAttribute(NSForegroundColorAttributeName, value: UIColor.black,range: NSMakeRange(0, "\(mingzi)".length + 1))

      amountString.addAttribute(NSFontAttributeName, value: UIFont.systemFont(ofSize: 13),range: NSMakeRange(0, "\(mingzi)".length + 1))

      

      amountString.addAttribute(NSForegroundColorAttributeName, value: UIColor.gray,range: NSMakeRange(1 + "\(mingzi)".length, "\(jieshao)".length))

      amountString.addAttribute(NSFontAttributeName, value: UIFont.systemFont(ofSize: 13),range: NSMakeRange(1 + "\(mingzi)".length, "\(jieshao)".length))

      self.bio.attributedText = amountString


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
IOS学习[Swift中跳转与传值]发布时间:2022-07-18
下一篇:
Swift开发第八篇——方法嵌套&amp;命名空间发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap