… of the English, “wow I forgot how complex basic English is”
I’m working on turning a sentence (String object) (a simple sentence for now) into a question.(s)
Initially I was planning on using an XML dictionary of the english language to help determin the part of speech that each word was (or could be, many nouns and verbs are interchangeable based on their use) but I’m not sure if that’s the best method now… I do have an English major to get help from… maybe.
so far I can get my code to regexp the string into sentences in an array and then into individual words, nested in the array, and then reference an AS dictionary (just a small example set I threw together. Not a full language dictionary)for their parts of speechand spit out the parts of speech pattern.
I know this is an odd inquiry but does anyone have any thoughts?
The project goal is to create a new educational program part of which automatically generates questions. For now I’m working on simle sentences, just looking to make the thing work.