All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.treeleafj.xmax.validate.EmailValidator Maven / Gradle / Ivy

The newest version!
package org.treeleafj.xmax.validate;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * 邮箱格式验证
 *
 * @author leaf
 * @date 2014-11-5 下午10:10:39
 */
public class EmailValidator implements Validator {

    private static Pattern p = Pattern.compile("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*");

    @Override
    public boolean validate(String email) {
        Matcher m = p.matcher(email);
        return m.matches();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy