Skip to content

Instantly share code, notes, and snippets.

@efremidze
Last active June 1, 2017 23:46
Show Gist options
  • Save efremidze/1fa1985632d502b09bb6a4e3752c4f22 to your computer and use it in GitHub Desktop.
Save efremidze/1fa1985632d502b09bb6a4e3752c4f22 to your computer and use it in GitHub Desktop.
String character count (more accurate)
extension String {
var count: Int {
var length = 0
enumerateSubstrings(in: startIndex..<endIndex, options: .byComposedCharacterSequences) { substring, substringRange, enclosingRange, stop in
length += 1
}
return length
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment