I\'ve seen so many different standards for the JSON date format:
\"\\\"\\\\/Date(1335205592410)\\\\/\\\"\" .NET JavaScriptSerializer \"\\\"\\\\/Date(
If you are using Kotlin then this will solve your problem. (MS Json format)
val dataString = "/Date(1586583441106)/" val date = Date(Long.parseLong(dataString.substring(6, dataString.length - 2)))