Good morning,
I am looking for a regular expression that obliges users to set the good format for a field (e.g shipping number), thanks to a validator.
The format that we need is Upper case + numbers as:
- OALC65AS
- 87QLS6LA2
- QLOS65
You can see that there is no order regarding number/letter
We just don't want that:
- as6fg6e5
- s654f6
- 98sd6f3
Spoiler alert, I tried:
- ^[A-Z0-9]+$
- [A-Z0-9]+
- [A-Z0-9]*
Thanks for your return
Hello @Bastien Delourmel
Interesting, would you be able to provide screenshots?
I just tried ^[A-Z0-9]+$ and it worked for me!
Well, don't know what did I do this day.. thanks. In fact it worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.