A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

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.        
复制代码


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马