Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * Check whether the email has username and domain
     *
     * @param aEmailAddress
     * @return
     */
    private static boolean hasNameAndDomain(String aEmailAddress) {
        String[] tokens = aEmailAddress.split("@");
        return tokens.length == 2 && tokens[0].trim().length() > 0 && tokens[1].trim().length() > 3
                && tokens[1].split("\\.").length > 1 && tokens[1].split("\\.")[1].length() > 1;
    }
}