Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {
    public static void main(String[] args) {
        String regex = "[a-z]@.";
        Pattern p = Pattern.compile(regex);
        String str = "abc@yahoo.com,123@cnn.com,abc@google.com";
        Matcher m = p.matcher(str);
    }
}