Regex timestamps
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
oneillp111
9 - Comet
‎10-16-2020
07:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have a regex expression that parses text for a timestamp in the form of dd/mm/yyyy hh:mm:ss AM/PM. The expression is as follows:
(\d{1,2}/\d{2}/\d{4}\s\d{1,2}:\d{1,2}:\d{1,2}\s.m)
This works great and I want to get all Time stamps in the string however when there is multiple timestamps, it also returns all the text in between the stamps. Can anyone help me with this? I want to get the timestamps only. Example, here is what I currently get from the above expression
9/30/2020 10:36:00 AM This can be any amount of text 9/24/2020 9:10:49 AM
This is what I am trying to get,
9/30/2020 10:36:00 AM
9/24/2020 9:10:49 AM
1 REPLY 1
ACE Emeritus
‎10-16-2020
07:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
