<?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: retrive case sencitive data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745158#M233544</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data low_upper;
input name  $  city $ 15.;
cards;
ravi mumbai
SIRISHA HYDEABAD
vinay delhi
GANESH BANGALURU
;
run;

data low;
set low_upper;
if name = lowcase(name) then output;
run;


data upper;
set low_upper;
if name = upcase(name) then output;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 02 Jun 2021 12:15:33 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2021-06-02T12:15:33Z</dc:date>
    <item>
      <title>retrive case sencitive data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745095#M233524</link>
      <description>&lt;P&gt;Hi Guys;&lt;/P&gt;
&lt;P&gt;Here I am trying to get upcase data and low case data&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data low_upper;
input name  $  city $ 15.;
cards;
ravi mumbai
SIRISHA HYDEABAD
vinay delhi
GANESH BANGALURU
;
run;

data low;
set low_upper;
if name upcase(name) then output;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Jun 2021 07:48:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745095#M233524</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2021-06-02T07:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: retrive case sencitive data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745097#M233526</link>
      <description>&lt;P&gt;What does this log tell you:&lt;/P&gt;
&lt;PRE&gt; 83         data low;
 84         set low_upper;
 85         if name upcase(name) then output;
                    ______
                    22
 ERROR 22-322: Syntaxfehler, erwartet wird eines der folgenden: !, !!, &amp;amp;, (, *, **, +, -, /, ;, &amp;lt;, &amp;lt;=, &amp;lt;&amp;gt;, =, &amp;gt;, &amp;gt;&amp;lt;, &amp;gt;=, AND, EQ, 
               GE, GT, LE, LT, MAX, MIN, NE, NG, NL, OR, [, ^=, {, |, ||, ~=.  
 
 86         run;
&lt;/PRE&gt;
&lt;P&gt;and what would you do to fix it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After ~400 posts here, this is trivial for you to fix.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 08:12:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745097#M233526</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-02T08:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: retrive case sencitive data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745100#M233528</link>
      <description>data low_upper;&lt;BR /&gt;input name  $  city $ 15.;&lt;BR /&gt;cards;&lt;BR /&gt;ravi mumbai&lt;BR /&gt;SIRISHA HYDEABAD&lt;BR /&gt;vinay delhi&lt;BR /&gt;GANESH BANGALURU&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data low;&lt;BR /&gt;set low_upper;&lt;BR /&gt;if name upcase(name) then output;&lt;BR /&gt;run;</description>
      <pubDate>Wed, 02 Jun 2021 08:56:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745100#M233528</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2021-06-02T08:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: retrive case sencitive data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745157#M233543</link>
      <description>&lt;PRE&gt;data low_upper;
input name  $  city $ 15.;
cards;
ravi mumbai
SIRISHA HYDEABAD
vinay delhi
GANESH BANGALURU
;
run;

data low ;
set low_upper;
if prxmatch('/[A-Z]/',name) then delete;
run;


data upper ;
set low_upper;
if prxmatch('/[a-z]/',name) then delete;
run;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Jun 2021 12:13:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745157#M233543</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-06-02T12:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: retrive case sencitive data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745158#M233544</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data low_upper;
input name  $  city $ 15.;
cards;
ravi mumbai
SIRISHA HYDEABAD
vinay delhi
GANESH BANGALURU
;
run;

data low;
set low_upper;
if name = lowcase(name) then output;
run;


data upper;
set low_upper;
if name = upcase(name) then output;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Jun 2021 12:15:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/retrive-case-sencitive-data/m-p/745158#M233544</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-06-02T12:15:33Z</dc:date>
    </item>
  </channel>
</rss>

