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 isValidPhoneNumber(String phoneNumber) {
        String regex = "^07[0-9]{8}$"; //Romania :)
        return phoneNumber.matches(regex);
    }
}