<?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: The character is followed by 7 digits in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805996#M33518</link>
    <description>&lt;P&gt;Thank you so much,&amp;nbsp;Kurt_Bremser!&lt;/P&gt;</description>
    <pubDate>Tue, 05 Apr 2022 07:48:48 GMT</pubDate>
    <dc:creator>J_J_J</dc:creator>
    <dc:date>2022-04-05T07:48:48Z</dc:date>
    <item>
      <title>The character is followed by 7 digits</title>
      <link>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805989#M33514</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I try to find results that correspond to the rule:&amp;nbsp;The character is on the 11th place and is followed by 7 digits, ex. 1234567891&lt;STRONG&gt;A1234567&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Could you help me please?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 07:15:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805989#M33514</guid>
      <dc:creator>J_J_J</dc:creator>
      <dc:date>2022-04-05T07:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: The character is followed by 7 digits</title>
      <link>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805991#M33515</link>
      <description>&lt;P&gt;Are the positions fixed?&lt;/P&gt;
&lt;P&gt;Do you want to search for specific characters/numbers, or just for the pattern?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 07:22:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805991#M33515</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-04-05T07:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: The character is followed by 7 digits</title>
      <link>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805992#M33516</link>
      <description>&lt;P&gt;11th position is fixed and I &lt;SPAN&gt;search for specific character, it's always &lt;STRONG&gt;A&lt;/STRONG&gt;, but numbers can vary.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 07:26:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805992#M33516</guid>
      <dc:creator>J_J_J</dc:creator>
      <dc:date>2022-04-05T07:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: The character is followed by 7 digits</title>
      <link>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805993#M33517</link>
      <description>&lt;P&gt;Simple, "brute force" approach:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input string $20.;
datalines;
1234567891A1234567
XXXXXXXXXXX9999999
1234567891A95X1234
;

data want;
set have;
if substr(string,11,1) = "A" and notdigit(substr(string,12,7)) = 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 05 Apr 2022 07:32:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805993#M33517</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-04-05T07:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: The character is followed by 7 digits</title>
      <link>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805996#M33518</link>
      <description>&lt;P&gt;Thank you so much,&amp;nbsp;Kurt_Bremser!&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2022 07:48:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/The-character-is-followed-by-7-digits/m-p/805996#M33518</guid>
      <dc:creator>J_J_J</dc:creator>
      <dc:date>2022-04-05T07:48:48Z</dc:date>
    </item>
  </channel>
</rss>

