Previous Page | Next Page

Informats for NLS

$UESCEw. Informat



Reads a character string that is in the encoding of the current SAS session, and then converts the character string to UESC representation.
Category: Character

Syntax
Syntax Description
Details
Comparisons
Examples
See Also

Syntax

$UESCEw.


Syntax Description

w

specifies the width of the input field.

Default: 8
Range: 1-32000

Details

The $UESCEw. informat can be nested.


Comparisons

The $UESCEw. informat performs processing that is opposite of the $UESCw. informat.


Examples

These examples use the Japanese Shift_JIS encoding, which is supported under the UNIX operating system.

Statements Results

----+----1----+
x=input(' [untitled graphic]', $uesc10.);

y=input('¥u5927',$uesc10.);

z=input('¥uu5927',$uesc10.);

put x y z;
¥u5927

¥uu5927

¥uuu5927


See Also

Formats:

$UESCw. Format

$UESCEw. Format

Informat:

$UESCw. Informat

Previous Page | Next Page | Top of Page