Recently created a new eVar containing the timestamp utilizing the 'getTimeParting' (version 6.3) from Adobe Common Analytics Plugins. The results shows up as such:
year=2022 | month=March | date=20 | day=Sunday | time=6:48 AM
Currently having difficulty creating within the classification rule builder utilizing regular expressions to retrieve each value from the key-value pairs from the time stamp for year, month, date, day and time. Anyone have recommendations on how to approach this particular regular expression? Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Nevermind, will be closing this thread. Since the answer has been found!
year=(\d+) *\| *month=(\w+) *\| *date=(\d+) *\| *day=(\w+) *\| *time=(.*)
Views
Replies
Total Likes
What are some of the rules and logic you have tried that failed? Can you post some examples here?
Views
Replies
Total Likes
Was provided this suggestion: (\w+) *= *([^|]*)
It seems to regenerate the first key-value pair, how do I expand this to provide additional match groups for month, date, day and time?
Views
Replies
Total Likes
Nevermind, will be closing this thread. Since the answer has been found!
year=(\d+) *\| *month=(\w+) *\| *date=(\d+) *\| *day=(\w+) *\| *time=(.*)
Views
Replies
Total Likes