vote up 0 vote down star

I'm trying to do validation of a date entered as numbers only. (e.g. 09042009 as 09/04/2009) The code now just checks the length of the date.

How would I validate not only length of the date entry but also that it is a real date? What would be the syntax for combining tests and regular expression?

Code as it exists now:

echo "Please enter the date you want (e.g. 07142009)"
level=1;
while [ $level -gt 0 ]; do
        read date;
        dateleng=`expr length $date`
        if [ dateleng -ne 8 ]; then
                echo "Bad date, please re-enter"; 
                else level=0;
        fi
done

This is in KSH on an old Unix system.

flag

Do you need to do it in ksh? It is pretty common to do things like: if echo "$TEXT" | perl -pe 'test and exit 1'; then echo $TEXT passed test; fi where test is some useful test of the string. – William Pursell Sep 4 at 14:21
I'm sure there is more than one way to skin this cat. Do you have an example of a one line regex in perl that does this? – jjclarkson Sep 4 at 14:37
That depends-- do you care about leap years? – Beta Sep 4 at 15:30
not really. no. – jjclarkson Sep 4 at 16:36

3 Answers

vote up 1 vote down check

Does this script help?

link|flag
Yes! That helped me to see the syntax for the KSH logical operators AND = -a and OR = -o (at least in SH, not sure if these carry over to my KSH) – jjclarkson Sep 4 at 14:35
vote up 0 vote down

Call date -d $date

See if it returns an error.

link|flag
My "date" doesn't like that: >date -d 09042009 date: -d illegal option Usage: date [-u] [+format] date [-u] [-t [[CC]YYMMDDhhmm[.SS] | MMDDhhmm[YY] ] – jjclarkson Sep 4 at 14:39
Oh, I didn't realize that option wasn't universal. Sorry about that. It would have been an easy fix! – Jeremy Stein Sep 4 at 14:58
vote up 1 vote down

All right, if you really want to do it as a singe regex and you don't care about leap years, try this:

^(((0[469])|(1[1]))((0[1-9])|([12][0-9])|(30))|((0[13578])|(1[02]))((0[1-9])|([12][0-9])|(3[01]))|(02)((0[1-9])|(1[0-9])|(2[0-8])))[0-9]{4}$
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.