Right now I am locating the words in a Word document by searching the term using
context.document.body.search(dict, { ignorePunct: true, matchCase: true, matchWholeWord: true });`
But I want to locate a word by its ordinal position in the Word document. I can't find the exact nth
word.
Is it possible to do that?
Speedy: You can use the range.split() method for this. (i.e. this applies to searchResult, body, paragraph, content control, etc.) Assuming that you want to get the 4th word in the paragraph this is how you do it:
and if you want to play with it in Script lab here is the gist you can import.