I have a string which looks like this:
"ABAR_VAL", "ACQ_EXPTAX_Y", "ACQ_EXP_TAX", "ADJ_MATHRES2"
and I'd like it to look like this:
ABAR_VAL ACQ_EXPTAX_Y ACQ_EXP_TAX ADJ_MATHRES2
ie no apostrophes or commas and single space seperated.
What is the cleanest / shortest way to do so in SAS 9.1.3 ?
preferably something along the lines of:
call symput ('MyMacroVariable',compress(????,????,????))
EDIT: just to be clear the result needs to be single space seperated, devoid of punctuation and contained in a macro variable..