Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static Boolean checkNum(String emil) {
        String str = "[0-9_]{1,20}";
        if (!emil.matches(str)) {
            return false;
        }
        return true;
    }
}