Hi Team, In old code "C" modifier used in compress function please find code example below. data files; length f_name $200; infile retail; input; f_name=retail; uname=compress(compress(upcase(f_name),,'c'),' '); run; Question: What is the use of "C" modifier in compress function and it would be helpful if anybudy explain with brief examples. I tried to refer many sites and docs but no budy explained about "C" modifiers.
... View more