I currently have this Extension
thanks to @Leo Dabus. It works perfectly for a single String
, but how would I implement this same logic to an Set
of Strings
like var mySet = ["word", "notaword", "stillnotaword"]
. In this example, I would want the function to only identify the first index
as true
(i.e. an English word).
extension String {
public mutating func isEnglishWord() -> Bool {
return UITextChecker().rangeOfMisspelledWord(in: self, range: NSRange(location: 0, length: utf16.count), startingAt: 0, wrap: false, language: "en_US").location == NSNotFound
}
}
var myString = "word"
myString.isEnglishWord()
I have added the code to print valid words and indexes of valid words. You can choose which ever suits you. Thanks