I have an API response which contains date in below format.
“PERIODID4_TSTAMP”: “/Date(1632614400000)/”
I want to replace /Date(1632614400000)/ with 1632614400000. Number of digit is always 13.
I tried below code but i get the output with slash, for ex getting output as: /1632614400000/
How to remove extra slash using below regex.
System.Text.RegularExpressions.Regex.Replace(str_DataResponse,“Date((\d{13}))”,“$1”)