This is the txt file for input
VA³00002³0351³02³20041³DRUG
Here is my code
data VAUTIL03;
infile 'c:\VAUTIL03.txt';
INPUT STATE $ NDC1 NDC2 NDC3 YRQTR DRUG $ ;
run;
I want to get rid of the small 3 that serves as the delimiter or separator. The only text fields are state and drug. How would I do this as a parse
VA³00002³0351³02³20041³DRUG
Here is my code
data VAUTIL03;
infile 'c:\VAUTIL03.txt';
INPUT STATE $ NDC1 NDC2 NDC3 YRQTR DRUG $ ;
run;
I want to get rid of the small 3 that serves as the delimiter or separator. The only text fields are state and drug. How would I do this as a parse