I'd like to know if it's possible to search for all verbs in a Microsoft Word document.
I've found that you can find all the "forms" of a particuliar verb (for example search "be", and word will find "be","am","are","was", etc.) but I need something more general: just find every verbs (and maybe their form).
I've also looked at this Checking whether a particular word is a noun or verb and I saw "using VBA". Is there some sort of API I can use with ms-Word to find all verbs or accesing some kind of metadata/registry about words ? Or is there some kind of special regex I can use for this?
I understand that sometimes it cannot determine whether a word is a noun or a verb, but that's not a problem if it's not 100% accurate.
For some context: I'm writing in french, and even though ms-Word finds a lot of mistakes, it doesn't find them all. There are some kind of recurrent mistakes that ms-Word doesn't see, but that I could easily/quickly check myself if I searched for every verbs (faster than having to reread the whole document).
I'm using Microsoft Office 2007 SP3.
Edit: of course I'm not sure if it is possible, but ms-Word seems to know this rather accuretly. I believe ms-Word has some ways to find whether a word is a verb, a noun, a plural, etc. based on how it's able to correct grammatical mistakes. Maybe I'm wrong on how ms-Word works, maybe I'm right but there is no way to access this kind of data. And if I'm right and it's possible to acces it, how ?