Open WaterHashira opened 4 years ago
phone number verification feature can be added by using Regex like this:- (although this not the exact code, but it will sort of be like this. )
String regex = "^(.+)@(.+)$"; Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(email); System.out.println(email +" : "+ matcher.matches());
Consider adding your thoughts to issue #394 instead of creating a duplicate issue.
got it!!👍
phone number verification feature can be added by using Regex like this:- (although this not the exact code, but it will sort of be like this. )
String regex = "^(.+)@(.+)$";
Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(email); System.out.println(email +" : "+ matcher.matches());