NLDATEYWw. Format
Converts the SAS date value to the date value of
the specified locale, and then writes the date value as the year and
the week.
Category: |
Date and Time |
Alignment: |
left |
Syntax
Syntax Description
- w
-
specifies the width
of the output field.
Example
This example
uses the fr_FR locale option.
|
|
put "+--- NLDATEYW
min=5 default=16 max=200 ---+";
put ' 16' +5 dy nldateyw.;
put ' 5' +5 dy nldateyw5.;
put ' 8' +5 dy nldateyw8.;
put ' 32' +5 dy nldateyw32.;
put '200' +5 dy nldateyw200.;
|
|