From 96cc13130598fa762dbc724fd2675342a2de9cb0 Mon Sep 17 00:00:00 2001 From: munja Date: Thu, 16 Dec 2021 00:01:58 +0000 Subject: [PATCH] chore(docs): updating header in mf_getquotedstr --- base/mf_getquotedstr.sas | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/base/mf_getquotedstr.sas b/base/mf_getquotedstr.sas index 94deaf8..54128df 100755 --- a/base/mf_getquotedstr.sas +++ b/base/mf_getquotedstr.sas @@ -16,8 +16,8 @@ > "these","words","are","double","quoted" @param [in] in_str The unquoted, spaced delimited string to transform - @param [in] dlm= The delimeter to be applied to the output (default comma) - @param [in] indlm= (,) The delimeter used for the input (default is space) + @param [in] dlm= (,) The delimeter to be applied to the output (default comma) + @param [in] indlm= ( ) The delimeter used for the input (default is space) @param [in] quote= (S) The quote mark to apply (S=Single, D=Double, N=None). If any other value than uppercase S or D is supplied, then that value will be used as the quoting character. @@ -28,7 +28,10 @@ **/ -%macro mf_getquotedstr(IN_STR,DLM=%str(,),QUOTE=S,indlm=%str( ) +%macro mf_getquotedstr(IN_STR + ,DLM=%str(,) + ,QUOTE=S + ,indlm=%str( ) )/*/STORE SOURCE*/; /* credit Rowland Hale - byte34 is double quote, 39 is single quote */ %if "e=S %then %let quote=%qsysfunc(byte(39));