Can anybody share Regular Expression below example:
minimum 3 alphanumeric and then add only one '@' then again minimum 3 alphanumeric
example: rohit@tcs or himansu@infosys
Can anybody share Regular Expression below example:
minimum 3 alphanumeric and then add only one '@' then again minimum 3 alphanumeric
example: rohit@tcs or himansu@infosys
Here is a pattern that matches:
/\w{3,}@{1}\w{3,}$/