<?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 Need to Create y in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/Need-to-Create-y/m-p/92436#M750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a variable x. It contains string like&lt;/P&gt;&lt;P&gt;x&lt;/P&gt;&lt;P&gt;02p wed ssd values having alpha numeric&lt;/P&gt;&lt;P&gt;people having rty ers that udf&lt;/P&gt;&lt;P&gt;they have edf 234 bcd fgh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to Create y&lt;/P&gt;&lt;P&gt;y&lt;/P&gt;&lt;P&gt;02p wed ssd&lt;/P&gt;&lt;P&gt;rty ers udf&lt;/P&gt;&lt;P&gt;edf 234 bcd fgh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to pull length of 3 from the given string.&lt;/P&gt;&lt;P&gt;Can any once help me out on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Sep 2013 01:58:08 GMT</pubDate>
    <dc:creator>sainamit</dc:creator>
    <dc:date>2013-09-25T01:58:08Z</dc:date>
    <item>
      <title>Need to Create y</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Need-to-Create-y/m-p/92436#M750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a variable x. It contains string like&lt;/P&gt;&lt;P&gt;x&lt;/P&gt;&lt;P&gt;02p wed ssd values having alpha numeric&lt;/P&gt;&lt;P&gt;people having rty ers that udf&lt;/P&gt;&lt;P&gt;they have edf 234 bcd fgh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to Create y&lt;/P&gt;&lt;P&gt;y&lt;/P&gt;&lt;P&gt;02p wed ssd&lt;/P&gt;&lt;P&gt;rty ers udf&lt;/P&gt;&lt;P&gt;edf 234 bcd fgh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to pull length of 3 from the given string.&lt;/P&gt;&lt;P&gt;Can any once help me out on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 01:58:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Need-to-Create-y/m-p/92436#M750</guid>
      <dc:creator>sainamit</dc:creator>
      <dc:date>2013-09-25T01:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Create y</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Need-to-Create-y/m-p/92437#M751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about the following?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA WANT;&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET HAVE;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LENGTH Y $200 DONE 3;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DO I = 1 BY 1 UNTIL (DONE);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Y1 = SCAN(X,I);&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF LENGTH(Y1) = 3 THEN Y = CATX(' ',Y,Y1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF Y1 = '' THEN DONE = 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; END; &lt;/P&gt;&lt;P&gt;&amp;nbsp; DROP Y1 DONE;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 03:04:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Need-to-Create-y/m-p/92437#M751</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2013-09-25T03:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Need to Create y</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Need-to-Create-y/m-p/92438#M752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also try PRX:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; x;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;infile&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; cards &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;truncover&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; var &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;$200.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;cards&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;02p wed ssd values having alpha numeric&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;people having rty ers that udf 34&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;they have edf 234 bcd fgh t&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; y;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; x;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp; new_var=prxchange(&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: purple; background: white;"&gt;'s/(\b[0-9a-zA-Z]{4,}\b)|(\b[0-9a-zA-Z]{1,2}\b)//i'&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;,-&lt;/SPAN&gt;&lt;STRONG style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;, var);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;run&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;Haikuo &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 21:51:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Need-to-Create-y/m-p/92438#M752</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2013-09-25T21:51:50Z</dc:date>
    </item>
  </channel>
</rss>

