SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 61197: When used under SAS® UTF-8, the KLOWCASE and KUPCASE functions return garbage characters

DetailsHotfixAboutRate It

When applying the KLOWCASE or KUPCASE functions to some national characters in a SAS UTF-8 session, you might see the unprinted or garbage characters in the results.

For example, after the code below is run, the hexadecimal code of the results are different.

data _null_;
l=klowcase('c4b0'x);
u=kupcase('c4b1'x);
put l=$hex. '(Should be 6920)';
put u=$hex. '(Should be 4920)';
run;

l=69B0 (Should be 6920)
u=49B1 (Should be 4920)

To work around this issue, use PROPCASE to make the string lowercase or uppercase. Here is an example:

propcase(string,'','L');

propcase(string,'','U');

Click the Hot Fix tab in this note to access the hot fix for this issue.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemBase SASz/OS9.4_M39.4_M59.4 TS1M39.4 TS1M5
z/OS 64-bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft® Windows® for x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8 Enterprise 32-bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8 Enterprise x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8 Pro 32-bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8 Pro x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8.1 Enterprise 32-bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8.1 Enterprise x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8.1 Pro 32-bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 8.1 Pro x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows 109.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows Server 20089.4_M39.4 TS1M3
Microsoft Windows Server 2008 R29.4_M39.4 TS1M3
Microsoft Windows Server 2008 for x649.4_M39.4 TS1M3
Microsoft Windows Server 2012 Datacenter9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows Server 2012 R2 Datacenter9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows Server 2012 R2 Std9.4_M39.4_M59.4 TS1M39.4 TS1M5
Microsoft Windows Server 2012 Std9.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Enterprise 32 bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Enterprise x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Home Premium 32 bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Home Premium x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Professional 32 bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Professional x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Ultimate 32 bit9.4_M39.4_M59.4 TS1M39.4 TS1M5
Windows 7 Ultimate x649.4_M39.4_M59.4 TS1M39.4 TS1M5
64-bit Enabled AIX9.4_M39.4_M59.4 TS1M39.4 TS1M5
64-bit Enabled Solaris9.4_M39.4_M59.4 TS1M39.4 TS1M5
HP-UX IPF9.4_M39.4_M59.4 TS1M39.4 TS1M5
Linux for x649.4_M39.4_M59.4 TS1M39.4 TS1M5
Solaris for x649.4_M39.4_M59.4 TS1M39.4 TS1M5
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.