StringToTime

Prototype

Matrix StringToTime( Matrix mTimeString )

Return Value

The return value is the SAS time value from the TIMEw. informat. A SAS time value is the number of seconds since midnight.

Parameters

Matrix mTimeString
The string to be processed by the TIMEw. informat.

Remarks

This module converts a string to a SAS time value by processing it with the TIMEw. informat.

Example
m = StringToTime( "01:23:34" );
print m;
print "01:23:34"T;
See Also

StringToDateTime
TimeToString