我正在尝试从以下格式的文本中删除日期/时间戳:
Randomtext - randomtext 9 Aug 5:55am
2nd line of random text - 2nd randomtext 15 Aug 12:20am
More random text - some more text 15 Aug 3:37pm
由于缺少前导零,我遇到了日期/时间长度不一致的问题。
答案1
尝试\b\d{1,2} (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Sept|Oct|Nov|Dec) \d{1,2}:\d\d(am|pm)\b
使用正则表达式查找/替换 - 这应该与示例中显示的时间戳相匹配。这将查找月份中的日期和小时的一位或两位数字,这将允许09
和9
格式。