Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save albertodebortoli/be8c8fddcebb5a44b3195e9782ffc5e1 to your computer and use it in GitHub Desktop.
Save albertodebortoli/be8c8fddcebb5a44b3195e9782ffc5e1 to your computer and use it in GitHub Desktop.
swift 3.0 substring
let s: String = "Stack Overflow"
let ss1: String = (s as NSString).substring(to: 5) // "Stack"
let index: String.Index = s.index(s.startIndex, offsetBy: 5)
var ss2: String = s.substring(to: index) // "Stack"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment