Skip to content

Instantly share code, notes, and snippets.

@npu3pak
Created March 2, 2017 06:53
Show Gist options
  • Save npu3pak/c74f9986c8082dba3abbd8e0d4ff90d2 to your computer and use it in GitHub Desktop.
Save npu3pak/c74f9986c8082dba3abbd8e0d4ff90d2 to your computer and use it in GitHub Desktop.
extension String {
func index(from: Int) -> Index {
return self.index(startIndex, offsetBy: from)
}
func substring(from: Int) -> String {
let fromIndex = index(from: from)
return substring(from: fromIndex)
}
func substring(to: Int) -> String {
let toIndex = index(from: to)
return substring(to: toIndex)
}
func substring(with r: Range<Int>) -> String {
let startIndex = index(from: r.lowerBound)
let endIndex = index(from: r.upperBound)
return substring(with: startIndex..<endIndex)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment