I need the search to only search specific word and not bigger words that contain the word in it. Like if I search for "tab", it doesn't show results for "tables". I am told match whole word does this, but how do I insert that into the below code?
var textToSearch = this.getField("search1").valueAsString;
if (textToSearch!="") search.query(textToSearch, "ActiveDoc");