Skip to content

Instantly share code, notes, and snippets.

@JoshuaSullivan
Last active August 2, 2018 03:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoshuaSullivan/35b1d7a116ec04aea1fd11adb71df4e7 to your computer and use it in GitHub Desktop.
Save JoshuaSullivan/35b1d7a116ec04aea1fd11adb71df4e7 to your computer and use it in GitHub Desktop.
This playground demonstrates several features of the NaturalLanguage framework that's new in iOS 12.
//: # Natural Language Framework
//: by Josh Sullivan
import Swift
import NaturalLanguage
//: Create a short string to test.
let str = "I am the very model of a modern major general! 😎"
//: And a longer one. Yay, multi-line String literals!
let longStr = """
Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal.
Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this.
But, in a larger sense, we can not dedicate—we can not consecrate—we can not hallow—this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us—that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion—that we here highly resolve that these dead shall not have died in vain—that this nation, under God, shall have a new birth of freedom—and that government of the people, by the people, for the people, shall not perish from the earth.
"""
//: ### String Tokenization
print("=========\nTokenizer\n=========")
let tokenizer = NLTokenizer(unit: .word)
tokenizer.string = str
tokenizer.enumerateTokens(in: str.startIndex..<str.endIndex) { (range, attributes) -> Bool in
print("\(str[range]) \(attributes.contains(.emoji) ? "(emoji)" : "")")
return true
}
//: ### Detect Language and Parts of Speech
let tagger = NLTagger(tagSchemes: [.language, .lexicalClass])
tagger.string = str
print("\n===============\nDetect Language\n===============")
print("Dominant language: \(tagger.dominantLanguage?.rawValue ?? "Unknown language.")")
print("\n===============\nParts of Speech\n===============")
let range = str.startIndex..<str.endIndex
tagger.enumerateTags(in: range, unit: .word, scheme: .lexicalClass, options: [.omitPunctuation, .omitWhitespace, .omitOther]) { (tag, range) -> Bool in
guard let tag = tag else { return false }
print("\(tag.rawValue)")
return true
}
//: ### How many nouns in the Gettysburg Address?
print("\n==========\nNoun Count\n==========")
var nouns: [String] = []
tagger.string = longStr
tagger.enumerateTags(in: longStr.startIndex..<longStr.endIndex, unit: .word, scheme: .lexicalClass, options:[.omitPunctuation, .omitWhitespace, .omitOther]) { (tag, range) -> Bool in
guard let tag = tag
else { return false }
if tag == NLTag.noun {
nouns.append(String(longStr[range]))
}
return true
}
print("Found \(nouns.count) nouns in the Gettysburg Address:\n\(nouns.joined(separator: ", "))")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment