Skip to content

Instantly share code, notes, and snippets.

@modestman
Created November 16, 2016 13:30
Show Gist options
  • Save modestman/21c488163764866d542dd42b96c766c7 to your computer and use it in GitHub Desktop.
Save modestman/21c488163764866d542dd42b96c766c7 to your computer and use it in GitHub Desktop.
extension String {
var composedCount : Int {
var count = 0
enumerateSubstrings(in: startIndex..<endIndex, options: .byComposedCharacterSequences) {_ in count+=1}
return count
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment