SAS PROC模板文本中断行

时间:2019-11-22 11:18:58

标签: sas fdf

我的目标是通过SAS生成fdf输出,以便将其导入到Adobe中。

不幸的是,我的proc模板生成的文件“ template.fdf”只是单行。但是,在每个put语句之后都需要换一行代码。有没有办法插入这个?

提前谢谢

PROC TEMPLATE;

DEFINE TAGSET template.FDF / STORE = SASUSER.TEMPLAT; 
DEFINE EVENT DOC_BODY; 
START:

put "%FDF-1.2 "; <=== new breakline in the document
PUT "text"; <=== new breakline in the document
put "<</Root 1 0 R>> ";<=== new breakline in the document
FINISH:        
PUT "%%EOF";
END;END;
RUN;

FILENAME OUT "C:\..\template.FDF"; 
ODS LISTING CLOSE; 
ODS MARKUP BODY = OUT 
TAGSET = template.FDF; 
ODS MARKUP CLOSE; ODS LISTING;

1 个答案:

答案 0 :(得分:1)

PUT语句上的NL选项

put "%FDF-1.2 " nl;

来自示例3 模板过程:创建标记语言标签集