I have added some test code to the action GetWordVariations to see how to handle British spelling word variations, such as labour for labor.
Code:
If WordStr.ToLower = "labor" Then WordVariationArray.Insert(0, "labour")
If WordStr.ToLower = "labour" Then WordVariationArray.Insert(0, "labor")
However, when I search for one spelling, I get a different number of search results than when I search for the other spelling.
What is the best way to handle this type of variation?
Thanks!
Dan