日期时间格式的正则表达式 “MM/DD HH:mm AM/PM”?
谁能告诉我一个正则表达式来 preg_replace 日志文件中的所有时间戳?格式如下。月份和日期前导零,而不是小时。
05/05 : 5:00 PM or MM/DD : HH:mm AM/PM
Can anyone tell me a regex to preg_replace all timestamps from a log file? The format is below. Leading zero's on month and day, not on hour.
05/05 : 5:00 PM or MM/DD : HH:mm AM/PM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
匹配的正则表达式如下:
preg_replace
等的适当语法取决于您希望替换的外观。The regex to match that is as follows:
The appropriate syntax for
preg_replace
or the like would depend on how you want the replacement to look.