论坛首页 招聘求职论坛

用java代码实现判断输入的字符串是合法的电子邮箱地址

浏览 4096 次
该帖已经被评为隐藏帖
作者 正文
   发表时间:2007-08-14  

用java代码实现判断输入的字符串是合法的电子邮箱地址

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class CheckEmail {

 
 public static void main(String[] args) throws IOException {
  String reg = "\\w+[\\w]*@[\\w]+\\.[\\w]+$";
  BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
  while(true){
   System.out.println("请输入要验证的邮箱地址:"+"\n"+"-->");
   String input = reader.readLine();
   if(input.equals("q")||input.equals("exit")){
    System.exit(0);
   }
   if(input.matches(reg)){
    System.out.println("这是正确的邮箱地址");
   }else{
    System.out.println("这是错误的邮箱地址 ");
   }
  }
 }

}

   发表时间:2007-08-14  
可真暈...........

怎麽會看到這種帖子.......
0 请登录后投票
论坛首页 招聘求职版

跳转论坛:
Global site tag (gtag.js) - Google Analytics