I have a json file where all the dates in the json are in /Date(1602949450000)/
the json is also nested. is there a generic way to parse all of /Date()/
into the timestamp?
I tried regexp_replace
but I cannot convert the capture group into a timestamp.
regexp_replace("value", "\\/Date\\((\\-?\\d*?)([\\+\\-]\\d*)?\\)\\/","$1")