Learn R Programming

EGRET (version 3.0.9)

dateFormatCheck: Check date format

Description

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

Usage

dateFormatCheck(date)

Value

condition logical TRUE or FALSE if checks passed or failed

Arguments

date

character

Examples

Run this code
date <- '1985-01-01'
dateFormatCheck(date)
dateWrong <- '1999/1/7'
dateFormatCheck(dateWrong)

Run the code above in your browser using DataLab