In a return of a jquery function, the returned date comes in this format.
/Date(1401731794773)/
I would like to remove the invalid characters on this date, which are:
/Date(
and )/
I only need the date (remaining) component to compose a valid date. So how do I do this? I think a REGEX would be the best way, right?