BookmarkSubscribeRSS Feed
Siddhartha
Calcite | Level 5

Hi,

I was using a text file from mainframe in one of the program, there are some comp-3 fields. While using this fields with the format starting with PDw.d formats.

I am getting the control characters in the output. I am not able to read the format with these characters.

Can any one suggest how to read control character in the output. Below is the screnshot.

Control characters scrnshot.PNG

Thanks & Regards,

Sid

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Can you not do:

data want;

     set have;

     my_new_var=input(substr(var,1,index(var," ")),pdX.Y.);

run;

Siddhartha
Calcite | Level 5

There are almost around 20 fields with the PDw.d format defined in the program.

Below is the format we are using in the PUT statement:

       @127   SUB_TOTAL_AMT               PD5.2                                 

       @132   TAX_AMT                     PD5.2                                

       @137   TOT_INVOICE_AMT             PD5.2  

       @244   CASH_SALE_AMT_P             PD4.2

       @293   STBASE                      PD5.2                                

       @298   STTAX                       PD5.2

Thanks & Regards,

Siddhartha

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Well, you wouldn't read the control chars in in that type of import.  I would suggest you need to clean the datafile first:

data _null_;

     infile "your_original_file.txt" recfm=n;

     file "cleaned_file.txt" recfm=n;

     input a $char1.;

     if lengthn(compress(upcase(a),"A","n"))=0 then put a;  /* I.e. if character is alphanumeric then output */

run;

Then read that new file in.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2100 views
  • 0 likes
  • 2 in conversation