This seems simple but I am not very familiar with regex so I'm having hard time finding a solution.
I have a date/time in string format that looks like this:
"11/18/2022 12:00 AM"
I want to create another property that is just a day ahead (so "11/19/2022 12:00 AM"), so I need a regex expression that just points to the "18" in that string.
Any help or guidance is appreciated! Thanks.
I've tried this:
^(.)(.)(./[^/])$
which just replaces the whole string.