I understand the regex used to match if it contains all letters is ^[a-zA-Z]+$
so I thought a negation of this regex would be the answer and tried ^(?!^[a-zA-Z])+$
but it doesn't seem to work.
To provide some context, I'm creating a basic form using SurveyJS form creator that accepts custom validation only via regex. A certain form input should allow users to input anything and only throw an error if the user only fill in letters.