How can i convert 2000-12-17T00:30:00.000+0000 to epoch time?
I tried using
1.) eval _time= strptime(_time,"%Y-%m-%dT%H:%M:%S.%3N%z")
2.) eval _time=strptime(_time,"%Y-%m-%dT%H:%M:%S")
I would like to understand how can i convert it into epoch time using strptime function?
↧