SOLVED
Date Extract
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
KamenRider
11 - Bolide
‎05-21-2024
01:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
Can someone help me get the date 05.20.24?
05.20.24 Porres Beerend Holiday Luck Exp Date Report
Thanks,
Kamen
Solved! Go to Solution.
2 REPLIES 2
18 - Pollux
‎05-21-2024
01:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
RegEx_Replace([Field], "(\d\d\.\d\d\.\d\d).+", "$1")
JBLove
10 - Fireball
‎05-21-2024
01:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You can use a regex tool with the Parse output method selected. The following expression will retrieve the date value(05.20.24) from the string: "05.20.24 Porres Beerend Holiday Luck Exp Date Report"
(\d+\.\d+.\d+)\s.+
If you're not familiar with regex, the parenthesis creates a marked grouping, and for these purposes that represents the new field extracting the date format out.
\d+ represents 1 or more digits
\. represents a single "."
\s represents a single whitespace
.+ represents 1 or more any character
