日期格式的正则表达式 Jun 12 2011 12:00:00:000AM
快速介绍一下,挑选这种格式的日期的最佳正则表达式是什么:
Jun 12 2011 12:00:00:000AM
月份始终是 3 个字母,日期也是 2 位数字。
Just a quick one, what's the best REGEX to pick out dates of this format:
Jun 12 2011 12:00:00:000AM
Months are always 3 letters and days are also 2 digits.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要捕获它的一部分,只需在需要时添加一些括号
如果您需要验证字符串,当然不要使用 REGEX,而是 http://php.net/manual/en/function.checkdate.php
To capture part of it just add some parthensis whenever you need
If you need to validate a string of course don't use REGEX but http://php.net/manual/en/function.checkdate.php
试试这个(未经测试)
try this (untested)