import java.util.Scanner; /*email判断长度是否合法,判断格式是否正确,接取email中的用户名*/ public class Test04 { public static void main(String[] args) { Scanner s = new Scanner(System.in); System.out.println("请输入邮箱地址"); while(true) { String email = s.next(); if (!(email.length() >= 5 && email.length() <= 16)) { //这里的长度看题目要求更改 System.out.println("长度不合法,请重新输入"); continue; } if (!(email.indexOf("@") < email.indexOf("."))) { //这里的格式按照题目要求更改,但大部分应该都是这样,最多加一个@不能在最前,.不能在最后 System.out.println("格式不合法,请重新输入"); continue; } System.out.println("用户名是" + email.substring(0, email.indexOf("@"))); System.exit(0); } } }
_____________________________
————————————————
随记
2021年7月14日
安