第13次作业--邮箱的正则表达式
一.题目:定义判断电子邮箱的正则表达式,判断输入的字符串是否为电子邮箱地址。
package work;
import java.util.Scanner;
public class Email {
public static void main(String[]args){
Scanner reader = new Scanner(System.in);
System.out.println("请输入你的邮箱:");
String str=reader.nextLine();
String regex="^\\w+((-\\w+)|(\\.\\w+))*\\@[A-Za-z0-9]+((\\.|-)[A-Za-z0-9]+)*\\.[A-Za-z0-9]+$";
if(str.matches(regex)){
System.out.println(str+"是一个合法的邮箱");
}else{
System.out.print(str+"不是一个合法的邮箱");
}
}
}
二.运行成功截图