NLTIMEw. Informat
Reads the time value in the specified locale, and
then converts the time value to the local SAS time value.
Syntax
Syntax Description
- w
-
specifies the width
of the input field.
Example
The following example
uses 16:24:43 as the input value.
|
|
|
|
options locale=English_UnitedStates;
y=input('16:24:43',nltime.);
|
|
options locale=German_Germany;
y=input('16.24 Uhr',nltime.);
|
|