Last chance! 50% off unlimited learning
Sale ends in
Interpret a character string as a time interval Strings are of the form MM:SS or HH:MM:SS.
ctimeToSeconds(ctime)
a character string (see ‘Details’.
A numeric value, the number of seconds represented by the string.
See secondsToCtime()
, the inverse of this.
Other things related to time:
julianCenturyAnomaly()
,
julianDay()
,
numberAsHMS()
,
numberAsPOSIXct()
,
secondsToCtime()
,
unabbreviateYear()
# NOT RUN {
library(oce)
cat("10 = ", ctimeToSeconds("10"), "s\n", sep="")
cat("01:04 = ", ctimeToSeconds("01:04"), "s\n", sep="")
cat("1:00:00 = ", ctimeToSeconds("1:00:00"), "s\n", sep="")
# }
Run the code above in your browser using DataLab