Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 ods tagsets.excelxp 将 .txt 文件的内容打印到选项卡?我有一个脚本,它创建一个带有多个选项卡的 .xml 文件,在其中一个选项卡上我想打印代码本身的行,以便我可以将 .xml 文件发送给某人,他们可以拥有代码我用来产生输出的。我将代码单独保存为 .txt。任何帮助或建议将不胜感激。
最简单的方法是将文本文件行读入数据集中。然后使用 PROC PRINT 打印到您的输出目的地;
data lines; infile "path/to/file.txt"; format code $2000.; input; code = _infile_; run; proc print data=lines noobs; run;