Here you can find the source of isEmail(String email)
Parameter | Description |
---|---|
a parameter |
public static boolean isEmail(String email)
//package com.java2s; //License from project: Apache License import java.util.regex.Pattern; public class Main { private final static Pattern emailer = Pattern .compile("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*"); /**//from w w w .j ava2 s. c om * if email is valid * * @param email * @return */ public static boolean isEmail(String email) { if (email == null || email.trim().length() == 0) return false; return emailer.matcher(email).matches(); } }