I will change the sample.doc to sample.xml. then I will import it into SAS. after modification then export it to newfile.doc. now the thing is how to import sample.xml into SAS, I am working on it now.
here is the sample.xml in attachement, please help the code of importing it to SAS.
(
The file sample.xml does not have a valid extension for an attachment and has been removed. sas,txt,csv,zip,pdf,ics,sx,sxs,doc,docx,xls,xlsx,egp,sav,sas7bdat,ctm,ctk,rtf,py are the valid extensions.)
it can't be attached, please just simply rename .doc to .xml.
data need1;
infile "c:\temp\sample.xml" truncover pad ;
input source $10000.;
run;
Thanks!
... View more