Matrix StringToTime( Matrix mTimeString )
The return value is the SAS time value from the TIMEw. informat. A SAS time value is the number of seconds since midnight.
Matrix mTimeString
The string to be processed by the TIMEw. informat.
This module converts a string to a SAS time value by processing it with the TIMEw. informat.
m = StringToTime( "01:23:34" ); print m; print "01:23:34"T;