how to pass a string to a macro sas without special char

↘锁芯ラ 提交于 2019-12-24 03:55:26

问题


I wrote this macro in sas to have some information about some files :

%macro info_1(cmd);
      filename dirList pipe &cmd.;

      data work.dirList;
            infile dirList length=reclen;
            input file $varying200. reclen;
            permission=scan(file,1,"");
            if input(scan(file,2,""), 8.)=1;
            user=scan(file,3,"");
            group=scan(file,4,"");
            file_size_KB=round(input(scan(file,5,""), 8.)/1024,1);
            file_size_MB=round(input(scan(file,5,""), 8.)/1024/1024,1);
            modified_time=input(catx(" ",scan(file,6," "),scan(file,7,"")),anydtdtm.);
            date_mod = datepart(modified_time);
            time_zone=scan(file,8,"");
            file_name=scan(file,-1,"");
            format modified_time datetime19.;
            format file_size_MB comma9.;
            format date_mod date9.;
            run;

%mend info_1;

then i declare this macro variable:

%let cmd = ls --full-time;
%let sep1= %quote( );
%let path = /data/projects/flat_file/meteo ; 
%let file = *.json ;
%let sep2 = %quote(/) ;
%let fullpath = &cmd.&sep1.&path.&sep2.&file;

Then i try to execute the macro :

%info_1(&fullpath.);

And i see a strange thing. I post a image because it is impossible to describe it. I guess that there are special chars.

How to fix that thing?


回答1:


Inside your macro I believe you just need to add quotes around this line:

filename dirList pipe &cmd.;

Right now after the macro resolution is happening it is treating it like:

filename dirList pipe ls --full-time;

... which is treating the ls part onwards like parameters to the filename statement. When fixed the code should appear as:

filename dirList pipe "&cmd";

Which will then be resolved as:

filename dirList pipe "ls --full-time";


来源:https://stackoverflow.com/questions/31812097/how-to-pass-a-string-to-a-macro-sas-without-special-char

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!