<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to use extact data , when  macro variable has special characters in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957692#M373835</link>
    <description>Thanks Tom and Ksharp for your answers , As you suggested seems the JSON method pointed by Ksharp will fit for my needs</description>
    <pubDate>Thu, 30 Jan 2025 15:41:38 GMT</pubDate>
    <dc:creator>learn_SAS_23</dc:creator>
    <dc:date>2025-01-30T15:41:38Z</dc:date>
    <item>
      <title>How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957589#M373794</link>
      <description>&lt;P&gt;Hello team ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have a data in macro variable like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let party_data = {"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`","id":"121212-1212"};&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how to store the content of name and id in two separate macro variables&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;am trying to use below code , but it is not working as expected&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i would like to store as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;party_name =as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`&lt;/P&gt;
&lt;P&gt;party_id=121212-1212&lt;/P&gt;
&lt;PRE&gt;%let party_data = {"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`","id":"121212-1212"};

party=compress(tranwrd(party_data,'","','¤'),'"{}[]');   
party_name=substr(kscan(party,1,'¤'),6);
party_id=substr(kscan(party,2,'¤'),4);

 
 
 output : 

 party   =  name:as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\#¤%&amp;amp;/()=?@£$€\\~|&amp;lt;&amp;gt;_:;*^`¤id:121212-1212
party_name = as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨	
party_id = ()=?@£$€\\~|&amp;lt;&amp;gt;_:;*^`&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 15:26:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957589#M373794</guid>
      <dc:creator>learn_SAS_23</dc:creator>
      <dc:date>2025-01-29T15:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957595#M373796</link>
      <description>&lt;P&gt;You have unbalanced quotes.&amp;nbsp; Perhaps because the string is trying to use the unix shell notation of treating \ as an escape character to mask the extra " and \ characters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use %bquote() to store values with unbalanced quotes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And then to WORK with the value of the macro variable PARTY_DATA in your other SAS code you could use the SYMGET() function to retrieve its value.&lt;/P&gt;
&lt;PRE&gt; 1          %let party_data = %bquote({"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;
 1        ! *^`","id":"121212-1212"});
 2          %put &amp;amp;=party_data ;
 PARTY_DATA={"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`","id":"121212-1212"}
 3          
 4          data test;
 5            party_data = symget('party_data');
 6            party=compress(tranwrd(party_data,'","','¤'),'"{}[]');
 7            party_name=substr(kscan(party,1,'¤'),6);
 8            party_id=substr(kscan(party,2,'¤'),4);
 9            put (party:) (=/);
 10         run;
 
 party_data={"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`","id":"121212-1212"}
 party=name:as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\#¤%&amp;amp;/()=?@£$€\\~|&amp;lt;&amp;gt;_:;*^`¤id:121212-1212
 party_name=as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\#
 party_id=()=?@£$€\\~|&amp;lt;&amp;gt;_:;*^`
 NOTE: The data set WORK.TEST has 1 observations and 4 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.00 seconds&lt;/PRE&gt;
&lt;P&gt;Instead of symget() you might use %sysfunc() to call quote() to convert the macro variable into a string that SAS will recognize as a string literal.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let party_data = %bquote({"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`","id":"121212-1212"});
%put &amp;amp;=party_data ;
%let party_data = %sysfunc(quote(&amp;amp;party_data,%str(%')));

data test;
  party_data =&amp;amp;party_data;
  party=compress(tranwrd(party_data,'","','¤'),'"{}[]');   
  party_name=substr(kscan(party,1,'¤'),6);
  party_id=substr(kscan(party,2,'¤'),4);
  put (party:) (=/);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jan 2025 16:31:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957595#M373796</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-01-29T16:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957618#M373799</link>
      <description>&lt;P&gt;Sorry i would like to store as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;party_name =as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`&lt;/P&gt;
&lt;P&gt;party_id=121212-1212&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 18:31:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957618#M373799</guid>
      <dc:creator>learn_SAS_23</dc:creator>
      <dc:date>2025-01-29T18:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957619#M373800</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/225493"&gt;@learn_SAS_23&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Sorry i would like to store as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;party_name =as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`&lt;/P&gt;
&lt;P&gt;party_id=121212-1212&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't know what you mean by this comment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you saying you don't know how to type in those values?&amp;nbsp; Do you need them in macro variables? Or as actual data in variables in a SAS dataset?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or are you saying you already have a string in a dataset variable and you want to extract those substrings from it?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 18:38:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957619#M373800</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-01-29T18:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957622#M373803</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;With above code you provided  am getting result as

party_data={"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`","id":"121212-1212"}
party=name:as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\#¤%&amp;amp;/()=?@£$€\\~|&amp;lt;&amp;gt;_:;*^`¤id:121212-1212
party_name=as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\#
party_id=()=?@£$€\\~|&amp;lt;&amp;gt;_:;*^`


Instead i would like to get result as  , which needs to store in a macro variable

party_name=as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$€{[]}\\~|&amp;lt;&amp;gt;_:;*^`
party_id=121212-1212
&lt;/PRE&gt;
&lt;P&gt;can you help in achieving this&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 18:56:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957622#M373803</guid>
      <dc:creator>learn_SAS_23</dc:creator>
      <dc:date>2025-01-29T18:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957631#M373807</link>
      <description>&lt;P&gt;Ok.&amp;nbsp; So the question is about how to PARSE json text.&lt;/P&gt;
&lt;P&gt;I have had good luck using SCAN(). Seems to handle most simple JSON strings.&amp;nbsp; Use = , [] and {} as delimiters and make sure to use the Q modifier.&lt;/P&gt;
&lt;P&gt;But if the strings can contain " that JSON wants to use \ to hide you might need to first convert the \" into "" so that they are balanced.&amp;nbsp; Remember to convert back again later.&lt;/P&gt;
&lt;P&gt;And since the values might have unbalanced quotes remember to add macro quoting to the macro variable (or store it as a string quoted with single quotes).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let party_data = %bquote({"name":"as&amp;lt;br&amp;gt;df:asfd;asdf*asdfâsdf¨¨asdf*asdf'´´½!\"#¤%&amp;amp;/()=?@£$\u20ac{[]}\\~|&amp;lt;&amp;gt;_:;*^`","id":"121212-1212"});

data _null_;
  length party_data $200 ;
  party_data = symget('party_data');
  party_data = tranwrd(party_data,'\"','""');
  length name $100 string $200 ;
  do i=1 by 2 until(name=' ');
    name=dequote(strip(scan(party_data,i,'{}:[],','q')));
    string=dequote(strip(scan(party_data,i+1,'{}:[],','q')));
    string = tranwrd(string,'"','\"');
    put name= / string= ;
    if name ne ' ' then do;
       name = cats('party_',name);
       call symputx(name,string);
       call execute(catx(' ','%nrstr(%let)',name,'=%nrstr(%superq)(',name,');'));
    end;
  end;
run;
%put &amp;amp;=party_id &amp;amp;=party_name ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 19:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957631#M373807</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-01-29T19:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957634#M373808</link>
      <description>&lt;P&gt;Thanks So much for your help , the above solution works perfectly ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;similarly i have another content in XML , where one of its attribute has value in&amp;nbsp; below format&lt;/P&gt;
&lt;PRE&gt;subparty = [{"name":"SUKUNIMI -11073533 ETUNIMI -11073533","id":"300576-456P","Code":"507808;test bank1","bNumber":"234234234234"},{"name":"TESTIYKS ACECGGHD","id":"010140-463P","Code":"529108;test bank2","bNumber":"324234234234"},{"name":"ARAHPE AÄLKOSKEÅÅÅ","id":"010153-111P","Code":"512404;test bank3","bNumber":"234234234234"}]

i would like to count all the subparty ,in above example we have 4 subparty 
and i need to store the values in a table with different columns like as below 

name1=SUKUNIMI -11073533 ETUNIMI -11073533
id1=300576-456P
Code1=507808;test bank1
bNumber1=234234234234

name2=TESTIYKS ACECGGHD
id2=010140-463P
Code1=529108;test bank2
bNumber2=324234234234

and so on ...&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Jan 2025 20:14:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957634#M373808</guid>
      <dc:creator>learn_SAS_23</dc:creator>
      <dc:date>2025-01-29T20:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957635#M373809</link>
      <description>as stated above name may contain different special characters and unicode characters as well</description>
      <pubDate>Wed, 29 Jan 2025 20:15:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957635#M373809</guid>
      <dc:creator>learn_SAS_23</dc:creator>
      <dc:date>2025-01-29T20:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957645#M373810</link>
      <description>&lt;P&gt;Not much use to but such things into macro variables.&amp;nbsp; Leave them in character variables where the special characters don't cause issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try the same SCAN() trick if you have the string in a character variable.&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;

subparty = '
[{"name":"SUKUNIMI -11073533 ETUNIMI -11073533"
 ,"id":"300576-456P"
 ,"Code":"507808;test bank1"
 ,"bNumber":"234234234234"}
,{"name":"TESTIYKS ACECGGHD"
 ,"id":"010140-463P"
 ,"Code":"529108;test bank2"
 ,"bNumber":"324234234234"}
,{"name":"ARAHPE AÄLKOSKEÅÅÅ"
 ,"id":"010153-111P"
 ,"Code":"512404;test bank3"
 ,"bNumber":"234234234234"
 }
]'
;
length row 8 name $32 value $200 ;
do i=1 to 100 by 2 ;
  name=dequote(strip(scan(subparty,i,'[]{}:,','q')));
  value=dequote(strip(scan(subparty,i+1,'[]{}:,','q')));
  if name=' ' then leave;
  row+(name='name');
  output;
end;

drop i subparty;
run;

proc print;
run;

proc transpose out=wide(drop=_name_);
  by row;
  id name;
  var value;
run;

proc print;
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1738183653002.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104132i628DCFBFC96F7B21/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tom_0-1738183653002.png" alt="Tom_0-1738183653002.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;But since that text looks like a fully formed JSON file you could just put it in a file and then use the JSON libref engine to parse it for you.&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options parmcards=json;
filename json temp;
parmcards4;
[{"name":"SUKUNIMI -11073533 ETUNIMI -11073533"
 ,"id":"300576-456P"
 ,"Code":"507808;test bank1"
 ,"bNumber":"234234234234"}
,{"name":"TESTIYKS ACECGGHD"
 ,"id":"010140-463P"
 ,"Code":"529108;test bank2"
 ,"bNumber":"324234234234"}
,{"name":"ARAHPE AÄLKOSKEÅÅÅ"
 ,"id":"010153-111P"
 ,"Code":"512404;test bank3"
 ,"bNumber":"234234234234"
 }
]
;;;;

libname json json ;
proc print data=json.root;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_1-1738183759740.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/104133i4A27921537F0027E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tom_1-1738183759740.png" alt="Tom_1-1738183759740.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 20:49:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957645#M373810</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-01-29T20:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957651#M373813</link>
      <description>&lt;P&gt;As Tom said using JSON engine, since your data so looks like a JSON file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let subparty = [{"name":"SUKUNIMI -11073533 ETUNIMI -11073533","id":"300576-456P","Code":"507808;test bank1","bNumber":"234234234234"},{"name":"TESTIYKS ACECGGHD","id":"010140-463P","Code":"529108;test bank2","bNumber":"324234234234"},{"name":"ARAHPE AÄLKOSKEÅÅÅ","id":"010153-111P","Code":"512404;test bank3","bNumber":"234234234234"}]  ;
filename x temp;
data _null_;
 file x;
 length x $ 32767;
 x="%bquote(&amp;amp;subparty.)";
 put x;
run;
libname j json fileref=x;
proc copy in=j out=work;
run;
data _null_;
 set alldata;
 if p1='name' then n+1;
 call symputx(cats(p1,n),value);
run;

%put _user_;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;77
78   %put _user_;
GLOBAL BNUMBER1 234234234234
GLOBAL BNUMBER2 324234234234
GLOBAL BNUMBER3 234234234234
GLOBAL BNUMBER4 234234234234
GLOBAL CODE1 507808;test bank1
GLOBAL CODE2 529108;test bank2
GLOBAL CODE3 512404;test bank3
GLOBAL ID1 300576-456P
GLOBAL ID2 010140-463P
GLOBAL ID3 010153-111P
GLOBAL J_JADP1LEN 7
GLOBAL J_JADPNUM 1
GLOBAL J_JADVLEN 36
GLOBAL &lt;STRONG&gt;NAME1&lt;/STRONG&gt; SUKUNIMI -11073533 ETUNIMI -11073533
GLOBAL &lt;STRONG&gt;NAME2&lt;/STRONG&gt; TESTIYKS ACECGGHD
GLOBAL &lt;STRONG&gt;NAME3&lt;/STRONG&gt; ARAHPE A?LKOSKE???









&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 Jan 2025 02:35:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957651#M373813</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-01-30T02:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to use extact data , when  macro variable has special characters</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957692#M373835</link>
      <description>Thanks Tom and Ksharp for your answers , As you suggested seems the JSON method pointed by Ksharp will fit for my needs</description>
      <pubDate>Thu, 30 Jan 2025 15:41:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-extact-data-when-macro-variable-has-special/m-p/957692#M373835</guid>
      <dc:creator>learn_SAS_23</dc:creator>
      <dc:date>2025-01-30T15:41:38Z</dc:date>
    </item>
  </channel>
</rss>

