Regex Classification Rule Builder - Time Stamp | Community
Skip to main content
Level 2
March 23, 2022
Solved

Regex Classification Rule Builder - Time Stamp

  • March 23, 2022
  • 1 reply
  • 1205 views

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!   

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by WesPhg

Nevermind, will be closing this thread. Since the answer has been found! 

 

year=(\d+) *\| *month=(\w+) *\| *date=(\d+) *\| *day=(\w+) *\| *time=(.*)

 

1 reply

Pablo_Childe
Community Advisor
Community Advisor
March 23, 2022

What are some of the rules and logic you have tried that failed? Can you post some examples here?

WesPhgAuthor
Level 2
March 23, 2022

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? 

 

 

WesPhgAuthorAccepted solution
Level 2
March 23, 2022

Nevermind, will be closing this thread. Since the answer has been found! 

 

year=(\d+) *\| *month=(\w+) *\| *date=(\d+) *\| *day=(\w+) *\| *time=(.*)