Reads a character string that is in the encoding of the current
SAS session, and then converts the character string to UPAREN representation.
- w
-
specifies the width of the input field.
Default: |
8 |
Range: |
1-32000 |
The $UPARENEw. informat performs
processing that is opposite of the $UPARENw.
informat.
These examples use the Japanese Shift_JIS encoding, which is supported
under the UNIX operating system.
Statements |
Results |
|
----+----1----+
|
v=input('a',$uparen10.);
w=input('b',$uparen10.);
x=input('c',$uparen10.);
y=input('3',$uparen10.);
z=input('
',$uparen10.);
put v;
put w;
put x;
put y;
put z;
|
<u0061>
<u0062>
<u0063>
<u0033>
<u5927>
|
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.