Skip to content

Instantly share code, notes, and snippets.

@erkekin
Last active February 11, 2018 11:23
Show Gist options
  • Save erkekin/a1c233dc5b955d9eb036283b68286fa0 to your computer and use it in GitHub Desktop.
Save erkekin/a1c233dc5b955d9eb036283b68286fa0 to your computer and use it in GitHub Desktop.
Gist to turn the sentence "MIDDLE EAST TECHNICAL UNIVERSITY" to "METU", Swift 4+
private func abbreviation(of sentence:String) -> String{
return sentence
.components(separatedBy: CharacterSet.whitespacesAndNewlines)
.flatMap{$0.first}
.map{String($0)}
.joined(separator: "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment