What is the best way to validate the first 8 chars of a file name is a valid date of form YYYYMMDD please?
%@left[8,%fn] but what then?
%@left[8,%fn] but what then?
By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!@ISDATE[yyyymmdd] from Charles Dye's ISO8601 plugin.
if "%@isdate[%cdate]%@isdigit[%cdate]" == "11" echo Valid date in YYYYMMDD format.
From the included HTML: %@ISDATE[date,infmt] so couldn't I use %@isdate[%cDate,YYYYMMDD] ??