Hi.
I tried This:
Restrict an input of any characters (up to 6 characters long) consisting lowercase letters: regex(., ‘^[a-z]{1,6}$’)
Restrict an input of any characters (up to 10 characters long) consisting uppercase letters: regex(., ‘^[A-Z]{1,10}$’)
BUT both are not working, I want to allow user to input in a text box;
Aghgggh BBBB hhhhh Mnnn ( upto only 70 characters with space)
Any suggestion