How to add email and password validation in Android studio

Published: 19 December 2020
on channel: Code Spec
107
0

Simple video for email and password validation with Pattern class in Java
the common email and password validation regx string is down below:

Pattern emailPattern = Pattern.compile("^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z09-]+)*@"+ "[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$");

Pattern passwordPattern = Pattern.compile("^(?=.*[0-9])(?=.*[A-Z])(?=.*[@#$%^&+=!])(?=\\S+$).{4,}$");

link: https://github.com/hdodenhof/CircleIm...
linkdin:   / faysalneowaz  
facebook:   / codespec33  

If you like the video please subscribe the channel and share the video with your friend.
Thank you :)


Watch video How to add email and password validation in Android studio online without registration, duration hours minute second in high quality. This video was added by user Code Spec 19 December 2020, don't forget to share it with your friends and acquaintances, it has been viewed on our site 107 once and liked it 0 people.