What I’m Learning: How to limit the number of words in a response to a Google Form question.
While you can use the advanced data validation properties of a Google Form question to limit the number of characters in an answer, you will need a regular expression in order to limit the number of words. If you ever have such a need, here it is: ^\s*(\S+\s+){1,9}\S*$ This regular …