黑马程序员技术交流社区

标题: 记录——正则表达式判断QQ号码及邮箱 [打印本页]

作者: 不怕黑人    时间: 2015-7-15 17:36
标题: 记录——正则表达式判断QQ号码及邮箱
  1. package day25;

  2. /**
  3. *
  4. *
  5. */
  6. public class MatchDemo {

  7.         public static void main(String[] args) {

  8.                 String str="9109499";
  9.                 matches_1(str);
  10.                 String mail="safhsiofh@fas3.con.cn";
  11.                 matches_2(mail);
  12.         }
  13.         public static void matches_1(String str){        //判断QQ号
  14.                
  15.                 String reg="[1-9]\\d{5,13}";
  16.                 boolean flag=str.matches(reg);
  17.                 System.out.println("QQ="+flag);
  18.                        
  19.         }
  20.         public static void matches_2(String mail){        //判断邮箱
  21.                
  22.                 String reg="[a-zA-Z0-9]+@[a-zA-Z0-9]+(\\.[a-zA-Z]+)+";
  23.                 boolean flag=mail.matches(reg);
  24.                 System.out.println("mail="+flag);
  25.         }
  26. }
  27.        
复制代码







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2