<?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: Remove quotes from a macro variable in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803104#M33303</link>
    <description>&lt;P&gt;Use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%sysfunc(tranwrd(%quote(&amp;amp;producto),%nrstr(%',%'),%str(,)))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But really, don't create macro variables with quotes around the values, if you can possibly avoid doing so. Macro variables with quotes around the values is just extra work when you have to remove the quotes; and can potentially cause problems.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error you got is caused by the comma in &amp;amp;PRODUCTO, and so then TRANWRD thinks there is another comma and extra arguments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Mar 2022 15:35:24 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-03-21T15:35:24Z</dc:date>
    <item>
      <title>Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803095#M33302</link>
      <description>&lt;P&gt;Hi everyone, I'm new to SAS programming and I'm trying to change the value of some macro variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have parameters in my programs where you can insert 2 product codes, for example '12345', '54321', you have to enter them that way literally, with quotes and everything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Those values are stored in a &amp;amp;product macrovariable, so if we do a %put &amp;amp;product; would return us '12345','54321'.&lt;/P&gt;
&lt;P&gt;What I want to do is remove those quotes that are in the middle and that results in '12345,54321'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried to do this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let producto = '12345','54321';&lt;BR /&gt;&lt;BR /&gt;%let product = %sysfunc(tranwrd(&amp;amp;producto,"'"," "));&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ERROR: The function TRANWRD referenced by the %SYSFUNC or %QSYSFUNC macro function has too many arguments.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but it tells me that tranwrd has many arguments, does anyone know why? Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:09:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803095#M33302</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2022-03-21T15:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803104#M33303</link>
      <description>&lt;P&gt;Use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%sysfunc(tranwrd(%quote(&amp;amp;producto),%nrstr(%',%'),%str(,)))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But really, don't create macro variables with quotes around the values, if you can possibly avoid doing so. Macro variables with quotes around the values is just extra work when you have to remove the quotes; and can potentially cause problems.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error you got is caused by the comma in &amp;amp;PRODUCTO, and so then TRANWRD thinks there is another comma and extra arguments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:35:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803104#M33303</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-03-21T15:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803107#M33304</link>
      <description>&lt;P&gt;It thinks you have too many arguments because you used three commas in the function call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;%sysfunc(tranwrd('12345','54321',"'"," "))&lt;/PRE&gt;
&lt;P&gt;Plus there aren't any double quote characters at all in your string , let alone any single quotes surrounded by double quotes&amp;nbsp;for TRANWRD() to replace.&amp;nbsp; &amp;nbsp;So even if you use some macro quoting to "hide" the extra comma your function call is not going to work.&lt;/P&gt;
&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let product = %sysfunc(tranwrd(%superq(producto),',',%str(,)));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:23:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803107#M33304</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-21T15:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803110#M33305</link>
      <description>&lt;P&gt;Thank you very much for your help but it only returns the first value of the macrovariable, I don't know if there is something I'm doing wrong but I'll send you a photo of the log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="prueba.PNG" style="width: 677px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69621iB02FAECFCDAD1549/image-size/large?v=v2&amp;amp;px=999" role="button" title="prueba.PNG" alt="prueba.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The value of product is '12345','54321' and it only returns '12345'.&lt;/P&gt;
&lt;P&gt;It would also be worth something to remove all the single quotes, that is, to keep it at 12345.54321.&lt;/P&gt;
&lt;P&gt;Either option is valid.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:25:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803110#M33305</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2022-03-21T15:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803113#M33306</link>
      <description>&lt;P&gt;&lt;FONT style="vertical-align: inherit;"&gt;&lt;FONT style="vertical-align: inherit;"&gt;Hola, muchas gracias por responder pero no me funciona, debo poner producto o &amp;amp;producto? &lt;/FONT&gt;&lt;FONT style="vertical-align: inherit;"&gt;dentro de %superq. &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT style="vertical-align: inherit;"&gt;&lt;FONT style="vertical-align: inherit;"&gt;Y precisamente lo que no quiero quitar son las ',' las comas que quiero que sean. &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT style="vertical-align: inherit;"&gt;&lt;FONT style="vertical-align: inherit;"&gt;Mi entrada es esta: '12345','54321' &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT style="vertical-align: inherit;"&gt;&lt;FONT style="vertical-align: inherit;"&gt;La salida que quiero es: '12345,54321' o 12345,54321 &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT style="vertical-align: inherit;"&gt;&lt;FONT style="vertical-align: inherit;"&gt;No quiero quitar la coma que separa los diferentes valores. &lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT style="vertical-align: inherit;"&gt;&lt;FONT style="vertical-align: inherit;"&gt;Muchas gracias&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:29:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803113#M33306</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2022-03-21T15:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803114#M33307</link>
      <description>&lt;P&gt;I modified the code, it works now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, do not show us screen captures of the log. Paste the text of the log into the window that appears when you click on the &amp;lt;/&amp;gt; icon. We need to see the entire log for the DATA step or PROC or macro code, not selected parts.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:29:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803114#M33307</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-03-21T15:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803116#M33308</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/415512"&gt;@Abelp9&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;...&lt;BR /&gt;
&lt;P&gt;you have to enter them that way literally, with quotes and everything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In the world that I live and work in, the programmer has control over such details, and can fix sub-optimal code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The proper solution: don't have quotes in macro variables in the first place.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:30:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803116#M33308</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-21T15:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803117#M33309</link>
      <description>&lt;P&gt;If you want to remove quotes completely use COMPRESS() function.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%sysfunc(compress(%superq(producto),%str(%')))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Put it might be easier to just add some double quotes to the string to be compressed and then compress both the double quotes and the single quotes.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%sysfunc(compress("producto","'")))&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:30:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803117#M33309</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-21T15:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803118#M33310</link>
      <description>WARNING: Argument 1 to function TRANSLATE referenced by the %SYSFUNC or %QSYSFUNC macro function is out of range.&lt;BR /&gt;24         %let test= %sysfunc(translate(%quote(&amp;amp;producto),%str( ),%str(%')));</description>
      <pubDate>Mon, 21 Mar 2022 15:30:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803118#M33310</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2022-03-21T15:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803119#M33311</link>
      <description>I need them because everything is connected to SAP and millions of other details</description>
      <pubDate>Mon, 21 Mar 2022 15:32:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803119#M33311</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2022-03-21T15:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803122#M33312</link>
      <description>&lt;P&gt;Nothing you put works for me, probably the error is mine, but I am literally copying what you have put, why is a macro not defined before the sysfunc? And why do you put it without the macrovariable symbol?&lt;/P&gt;
&lt;P&gt;Thank you very much&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:34:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803122#M33312</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2022-03-21T15:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803123#M33313</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%sysfunc(tranwrd(%quote(&amp;amp;producto),%nrstr(%',%'),%str(,)))&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:36:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803123#M33313</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-03-21T15:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803124#M33314</link>
      <description>Without a let macro or putting ";" in the end?</description>
      <pubDate>Mon, 21 Mar 2022 15:37:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803124#M33314</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2022-03-21T15:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803125#M33315</link>
      <description>&lt;P&gt;%SUPERQ() wants the NAME of the macro variable to quote, not the VALUE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To the macro processor everything is a string. So unlike in SAS code you do not need to add quotes around strings.&amp;nbsp; So the quotes in your original code were passed by %SYSFUNC() to&amp;nbsp;TRANWRD() as the actual characters to look for.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you replace the three byte string ',' with the one byte string , in your example then the quotes will be gone.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your real values have extra spaces around the comma then that method might not work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:37:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803125#M33315</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-21T15:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803127#M33316</link>
      <description>&lt;P&gt;Because it is much easier and clearer to just type function call without cluttering the answer with irrelevant details.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can place it where ever you need it in your code.&lt;/P&gt;
&lt;PRE&gt;23344  %let producto = '12345','54321';
23345  %let product1 = %sysfunc(tranwrd(%superq(producto),',',%str(,)));
23346  %let product2 = %sysfunc(compress("&amp;amp;producto","'"));
23347
23348  %put &amp;amp;=producto;
PRODUCTO='12345','54321'
23349  %put &amp;amp;=product1;
PRODUCT1='12345,54321'
23350  %put &amp;amp;=product2;
PRODUCT2=12345,54321
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:42:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803127#M33316</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-03-21T15:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803128#M33317</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/415512"&gt;@Abelp9&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Without a let macro or putting ";" in the end?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The function call removes the single quotes wherever you need them removed:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let product='12345','54321';

%put %sysfunc(compress(%superq(product),%str(%')));

/* or */ 

data test;
value = "%sysfunc(compress(%superq(product),%str(%')))";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:42:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803128#M33317</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-21T15:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803140#M33318</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/415512"&gt;@Abelp9&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Without a let macro or putting ";" in the end?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's a part of the code, you substitute it into the larger code where needed.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 16:36:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803140#M33318</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-03-21T16:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remove quotes from a macro variable</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803336#M33323</link>
      <description>&lt;PRE&gt;%let producto = '12345','54321';
%let product2 = %sysfunc(compress(%bquote(&amp;amp;producto),%str(%')));

%put &amp;amp;=producto &amp;amp;=product2 ;&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Mar 2022 13:11:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Remove-quotes-from-a-macro-variable/m-p/803336#M33323</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-03-22T13:11:44Z</dc:date>
    </item>
  </channel>
</rss>

