-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathRegexForEmail.java
68 lines (63 loc) · 2.26 KB
/
RegexForEmail.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* Algorithms-In-Java
* RegexForEmail.java
*/
package com.deepak.algorithms.Regex;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Regular expression for email address
*
* @author Deepak
*/
public class RegexForEmail {
/**
* Method to check for valid email
*
* @param args
*/
public static void main(String[] args) {
System.out.println(matchEmail("[email protected]")); // true
System.out.println(matchEmail("[email protected]")); // true
System.out.println(matchEmail("[email protected]")); // true
System.out.println(matchEmail("[email protected]")); // true
System.out.println(matchEmail("ABC#123$xyz*[email protected]")); // true
System.out.println(matchEmail("a [email protected]")); // false
System.out.println(matchEmail("[email protected]")); // false
System.out.println(matchEmail("[email protected]")); // false
System.out.println(matchEmail("@example.com")); // false
System.out.println(matchEmail("abc_xyz")); // false
System.out.println(matchEmail("email@example..")); // false
}
/**
* Method to check for a valid email address
* Explanation :
* => The local part of email can accept any of these,
* Upper case and lower case English alphabets (A-Z, a-z)
* Digits 0-9
* Characters ! # $ % & ' * + - / = ? ^ _ ` { | } ~
* Character . (provided that it is not the first/last character) and it does not appear two or more times consecutively
*
* Explanation of Regular Expression :
*
* There will be 4 groups here,
* For groups, we can use [A-Z0-9_!#$%&'*+/=?`{|}~^-]
* ^ - start of the string
* $ - end of the string
*
* So, first group + any character + second group + @ + third group + any character + fourth group
* first group and second group will be same
* third group and fourth group will be same
*
* And, we will be using case insensitive here, since we can have A-Z or a-z
*
* @param input
* @return {@link boolean}
*/
public static boolean matchEmail(String input) {
String regexforEmail = "^[A-Z0-9_!#$%&'*+/=?`{|}~^-]+(?:\\.[A-Z0-9_!#$%&'*+/=?`{|}~^-]+)*@[A-Z0-9-]+(?:\\.[A-Z0-9-]+)*$";
Pattern pattern = Pattern.compile(regexforEmail, Pattern.CASE_INSENSITIVE);
Matcher matcher = pattern.matcher(input);
return matcher.matches();
}
}