Learn R Programming

EGRET (version 3.0.2)

dateFormatCheck: Check date format

Description

Checks to see if format is YYYY-MM-DD. Also performs a few other date checks.

Usage

dateFormatCheck(date)

Arguments

date

character

Value

condition logical TRUE or FALSE if checks passed or failed

Examples

Run this code
# NOT RUN {
date <- '1985-01-01'
dateFormatCheck(date)
dateWrong <- '1999/1/7'
dateFormatCheck(dateWrong)
# }

Run the code above in your browser using DataLab