SY_KWT_OK

Prüft ein Datum im KWT-Format (JJJJKWT).

Prototype


SY_KWT_OK( kwt )

Parameter



ParameterTypBedeutung
1integer

Datum im Format JJJJKWT

Rückgabewert


NummerTypBedeutung
1booleanDatum OK?

Beispiel


local testKWTs =  { 2021526, 2022010, 2022999 }

for k,kwt in ipairs(testKWTs) do
	if SY_KWT_OK( kwt ) then
		SY_Proto("Datum im KWT-Format: " .. kwt .. " -- OK!" )
	else
		SY_Proto( "Datum im KWT-Format: " .. kwt .. " -- NICHT OK!" )
	end
end