I’m trying to check form input and allow any alphanumeric character (uppercase and lowercase letters, and numbers). I’m using this:
#isvalid("regex",FORM.text,"[a-zA-Z0-9]")#
But when I type something like “Test” or “Testing123” it fails the test. In fact, anything fails.
Is my regex wrong?