16 lines
413 B
Java
16 lines
413 B
Java
|
import java.util.regex.Matcher;
|
||
|
import java.util.regex.Pattern;
|
||
|
|
||
|
public class EmailMatcher {
|
||
|
|
||
|
// Regex für Emailadressen
|
||
|
static String emailRegex = "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.(?:[a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,63}$";
|
||
|
|
||
|
static Pattern pattern = Pattern.compile(emailRegex);
|
||
|
|
||
|
static boolean isValidEmail(String email) {
|
||
|
Matcher matcher = pattern.matcher(email);
|
||
|
return matcher.matches();
|
||
|
}
|
||
|
|
||
|
}
|