<?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: Search for a text from diffrent directories in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321851#M71133</link>
    <description>&lt;P&gt;A fast, non efficient way is to do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;search for string-1, copy results to results-1&lt;/P&gt;
&lt;P&gt;search for string-2, copy results to results-2&lt;/P&gt;
&lt;P&gt;search for string-3&lt;/P&gt;
&lt;P&gt;merge all results by: fname, _n&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To give you a better and more efficient way (one thread), I'll try to convert the&lt;/P&gt;
&lt;P&gt;code into a macro - next week.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;happy new year 2017.&lt;/P&gt;</description>
    <pubDate>Sat, 31 Dec 2016 21:31:16 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2016-12-31T21:31:16Z</dc:date>
    <item>
      <title>Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321615#M71058</link>
      <description>&lt;P&gt;I have too Many SAS codes in more than three Directories. How do I search for a Specific text in Side the SAS codes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For instance: I want to search FNAME,LNAME in &amp;nbsp;All my SAS codes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 18:11:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321615#M71058</guid>
      <dc:creator>tekish</dc:creator>
      <dc:date>2016-12-29T18:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321635#M71066</link>
      <description>&lt;P&gt;In Windows, I use the Windows Explorer search or the multi file searching feature in Notepad++.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 20:06:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321635#M71066</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-12-29T20:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321641#M71069</link>
      <description>&lt;P&gt;&lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462" target="_self"&gt;&lt;SPAN class="login-bold"&gt;PGStats&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for SAS programme.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 20:28:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321641#M71069</guid>
      <dc:creator>tekish</dc:creator>
      <dc:date>2016-12-29T20:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321649#M71071</link>
      <description>&lt;P&gt;In unix or linux xterminal you can do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cat &amp;nbsp; &amp;nbsp;*.sas &amp;nbsp;| grep any_string &amp;gt; lising.txt&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where: cut + grep functions scan all sas programs for "any_string"&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when found line is written to file "listing.txt"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is possible to do it by sas program using functions: &lt;STRONG&gt;filename, dopen, dread, fopen, fread, close;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Would you like to struggle it yourself ? It may take quite a time to write it and debug it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;here is an example of exploring one directory. (try expanding it to search a string )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let path = ...;
filename mydir "&amp;amp;path";

data dir_info;
    length fname $40 type $12 ;
    did = dopen('mydir');
    members = dnum(did);   /* nomber of files in directory */
    if did then
       do 1 to members;
             fname = dread(did,i);
             if indexc(fname,'.') = 0 then type='directory';
                                      else type='file';
             output;&lt;BR /&gt;             /* if type = file: open it and scan each line for the string */&lt;BR /&gt;             /* using similar functions: &lt;STRONG&gt;fopen, fread, index, close&lt;/STRONG&gt; */
       end;
       did = close(did)
       keep i fname type;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;c&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 20:50:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321649#M71071</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-12-29T20:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321670#M71077</link>
      <description>&lt;P&gt;One way to go:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let search_string=libname;

filename sascode ('c:\temp\*.sas' 'c:\test\*.sas');

data _null_;
  file print;
  length _filepath $200;
  retain _found_flg 0;
  infile sascode filename=_filepath eov=_eov;
  input;

  if _eov=1 then 
    do;
      _n=0;
      _found_flg=0;
      _eov=0;
    end;
  _n+1;

  if find(_infile_,"&amp;amp;search_string",'i') then 
    do;
      if _found_flg=0 then 
        do;
          put / 'File is: ' _filepath;
          _found_flg=1;
        end;
      put @1 _n z4. @5 _infile_;
    end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 00:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321670#M71077</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2016-12-30T00:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321727#M71099</link>
      <description>&lt;P&gt;You can try the below code to first read all the contents of the directory:&lt;/P&gt;
&lt;P&gt;this will read the content of each file row by row and check the &amp;nbsp;contents of the file and match it against the keywords you want and then it will output.&lt;/P&gt;
&lt;P&gt;Along with the full record, you will also get the actual file path of the file and the record number in the file, so that you always know where that record came from.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheer!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
filename INP "c:\users\xxxxx\desktop\*.sas";

DATA SRC;
	 ;
LENGTH _filepath FILEPATH1 $550;
INFILE INP filename = _filepath LRECL=80 PAD END = DONE ;
DO WHILE(NOT DONE);
	INPUT REC $CHAR80.;
	filepath1 = STRIP(_filepath);
 	RECNO+1;
	IF INDEX(UPCASE(REC),'FILENAME') THEN OUTPUT;
END;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Dec 2016 11:45:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321727#M71099</guid>
      <dc:creator>mnjtrana</dc:creator>
      <dc:date>2016-12-30T11:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321732#M71101</link>
      <description>&lt;P&gt;Dear &lt;A href="https://communities.sas.com/t5/user/viewprofilepage/user-id/34466" target="_self"&gt;&lt;SPAN&gt;mnjtrana;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;I tried your code and managed to call all the SAS codes in my directories:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;My bigest problem is how to search a specific text&amp;nbsp;inside the SAS codes. I am trying to search if there is "FNAME" Text inside my SAS codes.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Where do you specify the search button inside your code.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 12:55:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321732#M71101</guid>
      <dc:creator>tekish</dc:creator>
      <dc:date>2016-12-30T12:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321739#M71103</link>
      <description>&lt;P&gt;Patrick,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I like your approach it is easy to understand. Is there away i can create the unique files name from all the directories.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;something like this one.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;FileNAME&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;search_string&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;c:\desktop\X1.SAS&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Fname&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;c:\document\X2.SAS&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Fname&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;c:\desktop\file\X3.SAS&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Fname&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 14:02:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321739#M71103</guid>
      <dc:creator>tekish</dc:creator>
      <dc:date>2016-12-30T14:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321756#M71111</link>
      <description>&lt;P&gt;I made a variant &lt;STRONG&gt;based on&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;'s code:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;You may change SUFFIX to LOG, TXT, or any other one.&lt;/P&gt;
&lt;P&gt;You can add more directories in filename path.&lt;/P&gt;
&lt;P&gt;Result is given in sas dataset, including:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- fname = path and file name&lt;/P&gt;
&lt;P&gt;- a_line = line that contains the string&lt;/P&gt;
&lt;P&gt;_n = line nomber withein the input file&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let search_string = libname;
%let suffix = sas;
%let root=/folders/myshortcuts/My_Folders/;
filename finp ("&amp;amp;root.source/*.&amp;amp;suffix"); 

data results;
     length fname _filepath $200;
     infile finp filename = _filepath eov=_eov truncover;
     input a_line $200.;
     fname = _filepath;
     
     if _eov=1 then do;
       _n=0;
       _eov=0;
     end;
     _n+1;
     
     if find(a_line,"&amp;amp;search_string",'i')
     then output;
     keep _n a_line fname;
run;     
   
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Dec 2016 16:48:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321756#M71111</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-12-30T16:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321837#M71131</link>
      <description>&lt;P&gt;Dear Shmuel;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way we can search for more than one text.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like if i want to search "FNAME" or "LNAME" or "MNAME" at the same time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Dec 2016 14:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321837#M71131</guid>
      <dc:creator>tekish</dc:creator>
      <dc:date>2016-12-31T14:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321851#M71133</link>
      <description>&lt;P&gt;A fast, non efficient way is to do:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;search for string-1, copy results to results-1&lt;/P&gt;
&lt;P&gt;search for string-2, copy results to results-2&lt;/P&gt;
&lt;P&gt;search for string-3&lt;/P&gt;
&lt;P&gt;merge all results by: fname, _n&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To give you a better and more efficient way (one thread), I'll try to convert the&lt;/P&gt;
&lt;P&gt;code into a macro - next week.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;happy new year 2017.&lt;/P&gt;</description>
      <pubDate>Sat, 31 Dec 2016 21:31:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321851#M71133</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-12-31T21:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321868#M71135</link>
      <description>&lt;P&gt;More efficient way, without mcaro programing, just add as many as you want search_strings:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let search_string&lt;STRONG&gt;_1&lt;/STRONG&gt; = lname;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%let search_string&lt;STRONG&gt;_2&lt;/STRONG&gt; = fname;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;%let search_string&lt;STRONG&gt;_3&lt;/STRONG&gt;= mname;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;%let suffix = sas;&lt;BR /&gt;%let root=/folders/myshortcuts/My_Folders/;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;filename finp ("&amp;amp;root.source/*.&amp;amp;suffix");&lt;/P&gt;
&lt;P&gt;data results;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; length fname _filepath $200;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; infile finp filename = _filepath eov=_eov truncover;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; input a_line $200.;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; fname = _filepath;&lt;BR /&gt; &lt;BR /&gt; if _eov=1 then do;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;_n=0;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;_eov=0;&lt;BR /&gt; end;&lt;BR /&gt; _n+1;&lt;BR /&gt; &lt;BR /&gt; if find(a_line,"&amp;amp;search_string&lt;STRONG&gt;_1&lt;/STRONG&gt;",'i')&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;or&lt;/STRONG&gt;&amp;nbsp;&lt;SPAN&gt;find(a_line,"&amp;amp;search_string&lt;STRONG&gt;_2&lt;/STRONG&gt;",'i')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;or&lt;/STRONG&gt;&amp;nbsp;&lt;SPAN&gt;find(a_line,"&amp;amp;search_string&lt;STRONG&gt;_3&lt;/STRONG&gt;",'i')&lt;/SPAN&gt;&lt;BR /&gt; then output;&lt;BR /&gt; keep _n a_line fname;&lt;BR /&gt;run; &lt;BR /&gt; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jan 2017 05:30:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/321868#M71135</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-01-01T05:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Search for a text from diffrent directories</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/322326#M71302</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/51471"&gt;@tekish&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my code below, you can use the statement and replace the 'FILENAME' statement to whatever you want to search in your code.&lt;/P&gt;
&lt;P&gt;See the undelined.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename INP "c:\users\xxxxx\desktop\*.sas";

DATA SRC;
	 ;
LENGTH _filepath FILEPATH1 $550;
INFILE INP filename = _filepath LRECL=80 PAD END = DONE ;
DO WHILE(NOT DONE);
	INPUT REC $CHAR80.;
	filepath1 = STRIP(_filepath);
 	RECNO+1;
	IF INDEX(UPCASE(REC),'&lt;STRONG&gt;&lt;U&gt;FILENAME&lt;/U&gt;&lt;/STRONG&gt;') THEN OUTPUT;
END;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know, if that helps!&lt;/P&gt;
&lt;P&gt;Manjeet&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2017 07:02:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Search-for-a-text-from-diffrent-directories/m-p/322326#M71302</guid>
      <dc:creator>mnjtrana</dc:creator>
      <dc:date>2017-01-05T07:02:44Z</dc:date>
    </item>
  </channel>
</rss>

