swift 字符串是否相等 前后缀 是否相等

相等和不等  == !=

前缀相等 hasPrefix(_:)

后缀相等 hasSuffix(_:)

code:

//: A UIKit based Playground for presenting user interface
  
import UIKit

//截取逗号前面数值
let welcome = "hello,world"
let index = welcome.index(of: ",") ?? welcome.endIndex
let subString = welcome[..

效果截图

swift 字符串是否相等 前后缀 是否相等_第1张图片

你可能感兴趣的:(#,swift)