码迷,mamicode.com
首页 > 编程语言 > 详细

Swift3.0 字符串常用整理

时间:2016-11-01 11:32:47      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:turn   style   ref   写作   常用   baidu   后缀   asp   ret   

Swift3.0 字符串常用整理

(写作不易,转载请标明出处,谢谢)

 

1、判断前后缀, (hasPerfix, hasSuffix)返回的是Bool值

let str = "www.baidu.com"

str.hasPrefix("www.") // 前缀

str.hasSuffix(".com") // 后缀

 

2、判断两个字符串是否相等,(==,!=, >=, <=)返回的是Bool值

let str1 = "www"

let str2 = ".com"

if str1 != str2 else {return}

 

Swift3.0 字符串常用整理

标签:turn   style   ref   写作   常用   baidu   后缀   asp   ret   

原文地址:http://www.cnblogs.com/PLA-Artillery/p/6018748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!