Java基于正则实现的日期校验功能示例

作者:kinkding 时间:2021-09-30 02:43:26 

本文实例讲述了Java基于正则实现的日期校验功能。分享给大家供大家参考,具体如下:


private void checkDate() throws IOException {
   // 4种分隔符
   String sep = "[-\\./_]";
   // 年份
   String strPattern = "^(19[4-9]\\d|20\\d{2})" + sep;
   strPattern += "(";
   // 月(1,3,5,7,8,10,12)
   strPattern += "((0?[13578]|1[02])" + sep + "(0?[1-9]|[12][0-9]|3[01]))|";
   // 月(4,6,9,11)
   strPattern += "((0?[469]|11)" + sep + "(0?[1-9]|[12][0-9]|30))|";
   // 月(2)
   strPattern += "((2)" + sep + "(0?[1-9]|[12]\\d))";
   strPattern += ")$";
   Pattern p = Pattern.compile(strPattern);
   Matcher m = p.matcher("");
   int count = 0;
   String fileName = ExcelGene.class.getResource("date.txt").getFile();
   BufferedReader br = new BufferedReader(new FileReader(fileName));
   String line = null;
   while ((line = br.readLine()) != null) {
     count++;
     if (line.trim().length() > 0) {
       m.reset(line);
       if (!m.find()) {
         System.out.println(count + " " + line);
       } else {
         String year = m.group(1);
         String month = m.group(4);
         month = month == null ? m.group(7) : month;
         month = month == null ? m.group(10) : month;
         String date = m.group(5);
         date = date == null ? m.group(8) : date;
         date = date == null ? m.group(11) : date;
         System.out.println(year + "年" + month + "月" + date + "日");
       }
     }
   }
}

PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:

JavaScript正则表达式在线测试工具:
http://tools.jb51.net/regex/javascript

正则表达式在线生成工具:
http://tools.jb51.net/regex/create_reg

希望本文所述对大家java程序设计有所帮助。

标签:Java,正则,日期
0
投稿

猜你喜欢

  • Android编程实现仿QQ发表说说,上传照片及弹出框效果【附demo源码下载】

    2022-10-02 11:59:43
  • Spring Boot示例分析讲解自动化装配机制核心注解

    2022-07-26 15:56:14
  • kill命令在Java应用中使用的注意事项小结

    2023-11-11 13:01:55
  • 零基础写Java知乎爬虫之获取知乎编辑推荐内容

    2023-11-29 04:33:39
  • JVM的基本介绍以及垃圾回收

    2023-12-20 02:59:51
  • Java String 拼接字符串原理详解

    2023-05-14 10:10:33
  • SpringBoot使用JWT实现登录验证的方法示例

    2023-09-19 19:12:10
  • RecyclerView实现拖拽排序效果

    2022-09-14 01:23:40
  • C# WinForm导出Excel方法介绍

    2022-12-01 13:25:57
  • C#读取或设置ScrollLock状态的方法

    2023-03-14 21:41:24
  • implicit关键字做自定义类型隐式转换的方法

    2021-10-22 20:00:40
  • C语言函数声明以及函数原型超详细讲解示例

    2023-03-31 03:12:02
  • C++ 实现求最大公约数和最小公倍数

    2023-10-30 10:49:23
  • c#实现pdf的另存为功能

    2022-05-13 22:07:49
  • Android 获得屏幕宽高的三种方式

    2023-03-29 00:26:51
  • Android实现抽奖转盘实例代码

    2021-08-22 20:03:35
  • IDEA中JetBrains Mono字体的正确安装姿势

    2022-03-12 12:21:40
  • java格式化数值成货币格式示例

    2023-01-31 06:27:45
  • 简单的观察者模式示例分享

    2023-02-11 12:52:12
  • Java file类中renameTo方法操作实例

    2021-06-13 01:21:03
  • asp之家 软件编程 m.aspxhome.com