Google-forms – How to allow users to enter only text in short questions in Google Form

google-formsregex

I want users to enter only text in short questions in a Google Form.
Like, if I ask user his name then he is allowed to enter only text.
No digits or special characters.

Best Answer

To allow users to enter only text in short questions you should use the Response validation option and as the regular expression use Matches

^[A-Za-z]+

To take it a step further you can use an expression for 1st Capital letter(Upper case) and the rest ONLY lower case letters

^[A-Z]{1}[a-z]+

enter image description here