SOLVED
Parsing Day, Date, and Time
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
James89
7 - Meteor
‎10-03-2024
11:42 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi everyone,
I have a string that contains: Monday,March11,20248:55:10PM
Is there anyway that I can split them into 3 column into Day, Date, and Time respectively?
Thanks and regards.
Solved! Go to Solution.
2 REPLIES 2
ShankerV
17 - Castor
‎10-03-2024
11:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @James89
Please use Regex tool for your use case as below.
(\w+),(.+,\d\d\d\d)(.+)
 
Many thanks
Shanker V
acotta17
7 - Meteor
‎10-04-2024
08:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
