douweng7233 2015-11-06 14:12
浏览 23
已采纳

年度季度PHP / Javascript模式

I need pattern for a quarter of a year, for example 1/2015 -> first quarter of the 2015. 4/2015 -> fourth quarter of the year. I need to validate given value for being a quarter. How I can achieve that in javascript or php ? I guess that in PHP preg_match function is good way to go but I have difficulties with creating correct pattern...

  • 写回答

3条回答 默认 最新

  • douliao5942 2015-11-06 14:24
    关注

    It depends on the range of years that you'd like to support.

    Assuming anything between quarter 1/1000 and 4/2999 should be accepted then the regular expression you want to use is

    /^[1234]\/[12]\d{3}$/
    

    For example this JavaScript function will test for valid quarters

    function is_quarter(text) {
      return text.match(/^[1234]\/[12]\d{3}$/) != null;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码