back to Table of Contents


StrFGivenTime$ (function)

Return formatted date/time output for the given date/time values, this function does emulate the C/C++ time function strftime(), it takes your desired date/time values and the arguments required for formatting and returns the result in a new string.

Note that it works only for date/times in the following range:

these limitations are imposed by the strftime() implementation.

SYNTAX:

formatted$ = StrFGivenTime$ (fmt$, year%, month%, day%, hour%, minute%, second%)

INPUTS:

fmt$ (STRING)

date/time values (INTEGERs)


RESULT:

formatted$ (STRING)


ERRORS:


back to Table of Contents