<?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: Removing Quotations in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797553#M81602</link>
    <description>&lt;BLOCKQUOTE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ds;
input state $ ;
datalines;
"Arizona"
"Albama"
;

run;

data d;
set ds;
 y=dequote(state); 
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;</description>
    <pubDate>Mon, 21 Feb 2022 08:03:30 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2022-02-21T08:03:30Z</dc:date>
    <item>
      <title>Removing Quotations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797517#M81599</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-02-20 at 8.27.56 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/68704i1CC0D3A280890A3E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2022-02-20 at 8.27.56 PM.png" alt="Screen Shot 2022-02-20 at 8.27.56 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How can I remove the quotes from the name of each state?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Feb 2022 01:30:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797517#M81599</guid>
      <dc:creator>TT12</dc:creator>
      <dc:date>2022-02-21T01:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Quotations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797518#M81600</link>
      <description>&lt;P&gt;The COMPRESS function is one of the basic tools to remove single characters. In a data step&lt;/P&gt;
&lt;PRE&gt;state= compress(state,'"');&lt;/PRE&gt;
&lt;P&gt;You may have to look closely but the compress function has one double quote, the character to remove, between single quotes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or consider that how you read the data in the first place might have an issue.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Feb 2022 01:47:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797518#M81600</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-02-21T01:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Quotations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797521#M81601</link>
      <description>&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Mon, 21 Feb 2022 02:15:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797521#M81601</guid>
      <dc:creator>TT12</dc:creator>
      <dc:date>2022-02-21T02:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Quotations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797553#M81602</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ds;
input state $ ;
datalines;
"Arizona"
"Albama"
;

run;

data d;
set ds;
 y=dequote(state); 
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 21 Feb 2022 08:03:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-Quotations/m-p/797553#M81602</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2022-02-21T08:03:30Z</dc:date>
    </item>
  </channel>
</rss>

