Regular Expression for Alpha numerical values should be acceptable and minimum 3 characters

0
Hi Community, I want the Regular Expression for Alpha numerical values should be acceptable and minimum 3 characters. If any share me the Regular Expression for that please.
asked
2 answers
1

Hello Mamatha,

 

I could give it to you directly, but I think it always better to learn how to do it.

 

Just check out this website where you can create, check and learn regex:

 

https://regex101.com/

 

It is really simple and so you can profit it from it in the future!

 

Hope this helps,

 

Good luck!

answered
0

Hi Mamatha,

 

Use this regular expression : ^[A-Za-z0-9]{3,}$

 

Hope this helps you,

Thankyou.

answered