其他分享
首页 > 其他分享> > 题目:定义判断电子邮箱的正则表达式,判断输入的字符串是否为电子邮箱地址。

题目:定义判断电子邮箱的正则表达式,判断输入的字符串是否为电子邮箱地址。

作者:互联网

package cn.exercise;

import java.util.Scanner;

/**
 * @author WH
 * @project Java
 * @package cn.exercise
 * @date 2019/11/24 18:44
 */
public class Email {
    public static void main(String[] args) {
       
        Scanner e=new Scanner(System.in);
 String email="\\w*+[@]\\w+[.]\\w*";
String a=e.nextLine(); if (a.matches(email)){ System.out.println("是邮箱"); }else{ System.out.println("不是"); } } }

标签:判断,cn,Scanner,邮箱地址,System,电子邮箱,public,exercise,String
来源: https://www.cnblogs.com/hfudhddudidgf/p/11925001.html