parseLocalTimeQuiet
parseLocalTimeQuiet
parses the string argument as a local time, which is the time that would be read from a clock and does not have a date or timezone.
Local time strings can be formatted as hh:mm:ss[.nnnnnnnnn]
.
"Quiet" methods return null
instead of throwing an exception when encountering a string that cannot be parsed.
Syntax
parseLocalTimeQuiet(s)
Parameters
Parameter | Type | Description |
---|---|---|
s | string | The string to be converted. Format is |
Returns
A local time, or null
if invalid input is given.
Examples
time = parseLocalTimeQuiet("11:29:23.123123")
timeinvalid = parseLocalTimeQuiet("2:333:342")
println time
println timeinvalid
- Log