<?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: SUBSTR function not working! Please help me to solve  the following: in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93769#M19768</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To identify the account id try this:&lt;/P&gt;&lt;P&gt;I can't tell from your data whether the envelope symbol is encapsulated in your data or is an artifact of the HTML posting.&amp;nbsp; If the latter, using &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;scan(account_id, -2, ") @") will pick out the second to last "word" in account_is, where the word boundary is delimited by "@", space or right parenthesis.&amp;nbsp; If the symbol is in your data and you can identify it by its byte code you may be able to add that into the list of scan delimiters, otherwise a subsequent account_id = substr (account_id, 2, 99) should do the trick.&amp;nbsp; NB don't compress out the parentheses for this to work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;From your second posting though it appears you have a problem splitting a single input line.&amp;nbsp; If that is the case, first find the account_id by applying the scan function to the input data, then use the INDEX function to locate its first occurrence in the input data&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos = index (rawdata, account_id) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Then &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; full_name = substr (rawdata, 1, pos - 2) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2012 23:02:49 GMT</pubDate>
    <dc:creator>RichardinOz</dc:creator>
    <dc:date>2012-10-16T23:02:49Z</dc:date>
    <item>
      <title>SUBSTR function not working! Please help me to solve  the following:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93766#M19765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. I need to delete 10 digits from right including @ sign on email account and leave only login name for Account ID column (i.e. mjohn)&lt;/P&gt;&lt;P&gt;2. You may also notice – if the names are repeated, email account is attached in parenthesis with their names. I will also need to remove the email account including&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; the parenthesis from Full Name column if the names have their email account attached (i.e. Tom Lee (&lt;A href="mailto:tlee2@gmail.com"&gt;tlee2@gmail.com&lt;/A&gt;) = Tom Lee)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Roger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Input data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Full_Name Account_ID&lt;/P&gt;&lt;P&gt;------------ --------------&lt;/P&gt;&lt;P&gt;Mary Johnson&amp;nbsp; &lt;A href="mailto:mjohn@gmail.com"&gt;mjohn@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mary Jonson (&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:mjohn2@gmail.com"&gt;mjohn2@gmail.com&lt;/A&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;A href="mailto:mjohn2@gmail.com"&gt;mjohn2@gmail.com&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Robin King &lt;A href="mailto:rking@gmail.com"&gt;rking@gmail.com&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Tom Lee &lt;A href="mailto:tlee@gmail.com"&gt;tlee@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tom Lee (&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee2@gmail.com"&gt;tlee2@gmail.com&lt;/A&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee2@gmail.com"&gt;tlee2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Need the following output:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Full_Name Account_ID&lt;/P&gt;&lt;P&gt;------------ --------------&lt;/P&gt;&lt;P&gt;Mary Johnson&amp;nbsp; mjohn&lt;/P&gt;&lt;P&gt;Mary Jonson mjohn2&lt;/P&gt;&lt;P&gt;Robin King rking&lt;/P&gt;&lt;P&gt;Tom Lee tlee&lt;/P&gt;&lt;P&gt;Tom Lee tlee2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 21:45:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93766#M19765</guid>
      <dc:creator>Roger</dc:creator>
      <dc:date>2012-10-12T21:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR function not working! Please help me to solve  the following:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93767#M19766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the scan function with the "@" as a delimiter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;scan(account_id, 1, "@")&lt;/P&gt;&lt;P&gt;You can use compress function to remove brackets.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2012 22:07:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93767#M19766</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2012-10-12T22:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR function not working! Please help me to solve  the following:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93768#M19767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reeza, Thanks for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm still having an issue with the login ID that comes in parantheses. I was able to use compress function to remove the parantheses but login ID still shows up after the the last name, e.g. Mary Jonson mjohn2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And some people have a middle initial, e.g. Mary E. Jonson mjohn2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to remove the login ID at the end of their names? (in some cases it's a 4th word and in some cases it's a 3rd word, depending on whether they have a middle initial or not)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 22:13:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93768#M19767</guid>
      <dc:creator>Roger</dc:creator>
      <dc:date>2012-10-16T22:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR function not working! Please help me to solve  the following:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93769#M19768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To identify the account id try this:&lt;/P&gt;&lt;P&gt;I can't tell from your data whether the envelope symbol is encapsulated in your data or is an artifact of the HTML posting.&amp;nbsp; If the latter, using &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;scan(account_id, -2, ") @") will pick out the second to last "word" in account_is, where the word boundary is delimited by "@", space or right parenthesis.&amp;nbsp; If the symbol is in your data and you can identify it by its byte code you may be able to add that into the list of scan delimiters, otherwise a subsequent account_id = substr (account_id, 2, 99) should do the trick.&amp;nbsp; NB don't compress out the parentheses for this to work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;From your second posting though it appears you have a problem splitting a single input line.&amp;nbsp; If that is the case, first find the account_id by applying the scan function to the input data, then use the INDEX function to locate its first occurrence in the input data&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pos = index (rawdata, account_id) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Then &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; full_name = substr (rawdata, 1, pos - 2) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 23:02:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93769#M19768</guid>
      <dc:creator>RichardinOz</dc:creator>
      <dc:date>2012-10-16T23:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR function not working! Please help me to solve  the following:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93770#M19769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way to do this is like so - FINDC finds the first blank searching from right to left with any trailing blanks removed first, then SUBSTR extracts all characters up to that position:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 9pt; background: white; font-family: 'Courier New';"&gt;data&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt; test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;&amp;nbsp; string = &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 9pt;"&gt;'Mary E. Jonson mjohn2&amp;nbsp; '&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;&amp;nbsp; result = substr(string, &lt;/SPAN&gt;&lt;STRONG style="color: teal; font-size: 9pt; background: white; font-family: 'Courier New';"&gt;1&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;, findc(trim(string), &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 9pt;"&gt;' '&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 9pt;"&gt;'B'&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;) - 1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 9pt;"&gt;put&lt;/SPAN&gt; &lt;SPAN style="font-family: 'Courier New'; background: white; color: blue; font-size: 9pt;"&gt;_all_&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: navy; font-size: 9pt; background: white; font-family: 'Courier New';"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 23:06:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93770#M19769</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2012-10-16T23:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: SUBSTR function not working! Please help me to solve  the following:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93771#M19770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;combining Rezee and SASkiwi's solutions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;input all $50.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mary Johnson&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:mjohn@gmail.com"&gt;mjohn@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mary Jonson (&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:mjohn2@gmail.com"&gt;mjohn2@gmail.com&lt;/A&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:mjohn2@gmail.com"&gt;mjohn2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Robin King &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:rking@gmail.com"&gt;rking@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tom Lee &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee@gmail.com"&gt;tlee@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Tom Lee (&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee2@gmail.com"&gt;tlee2@gmail.com&lt;/A&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee2@gmail.com"&gt;tlee2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;data want(drop=temp);&lt;/P&gt;&lt;P&gt;length full_name account_id $ 20;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; temp=compress(scan(all, 1, "@"),'()');&lt;/P&gt;&lt;P&gt;&amp;nbsp; Account_ID=scan(temp,-1,' ');&lt;/P&gt;&lt;P&gt;&amp;nbsp; full_name=substr(temp, 1, findc(trim(temp), ' ', 'B') - 1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; proc print;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; account_&lt;/P&gt;&lt;P&gt;Obs&amp;nbsp;&amp;nbsp;&amp;nbsp; full_name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; all&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mary Johnson&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mjohn&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mary Johnson&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:mjohn@gmail.com"&gt;mjohn@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mary Jonson&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mjohn2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mary Jonson (&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:mjohn2@gmail.com"&gt;mjohn2@gmail.com&lt;/A&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:mjohn2@gmail.com"&gt;mjohn2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Robin King&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rking&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Robin King &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:rking@gmail.com"&gt;rking@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tom Lee&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tlee&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tom Lee &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee@gmail.com"&gt;tlee@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt; 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tom Lee&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tlee2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tom Lee (&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee2@gmail.com"&gt;tlee2@gmail.com&lt;/A&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:tlee2@gmail.com"&gt;tlee2@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 23:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SUBSTR-function-not-working-Please-help-me-to-solve-the/m-p/93771#M19770</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2012-10-16T23:14:30Z</dc:date>
    </item>
  </channel>
</rss>

