利用matches()方法进行正则匹配

请根据给出的正则表达式来验证邮箱格式是否合法,如果用户输入的格式合法则输出「邮箱格式合法」,否则输出「邮箱格式不合法」。

利用matches()方法进行正则匹配

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);
        String str = scanner.next();
        String emailMatcher="[a-zA-Z0-9]+@[a-zA-Z0-9]+\\.[a-zA-Z0-9]+";

        System.out.println(str.matches(emailMatcher)?"邮箱格式合法":"邮箱格式不合法");


    }
}
上一篇:解答微信公众号手机无法直接下载APK文件是怎么回事


下一篇:关于No operator matches the given name and argument type(s).问题的解决方案