parse_time
native parse_time(const input[], const format[], time = -1);
| Parameter |
Description |
| input | Time string to convert |
| format | Formatting information for conversion |
| time | If different from -1, the converted time will be added to
this time stamp |
Converts time strings to unix time stamp.
Uses the strptime C function. For a list of valid format parameters,
see: http://www.cplusplus.com/reference/ctime/strftime/
An example for a input/format combination would be:
Input: "10:32:54 04/02/2013" Format: "%H:%M:%S %m:%d:%Y"
Information missing from the input will be filled with the current
time and date.
Unix time stamp
If the conversion process fails, an error will be thrown.