<?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: How do I import a text file in which its field values are wrapped in pipe character? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821947#M324522</link>
    <description>I suspect this is done because your file has embedded comma's and/or quotes in the variables....&lt;BR /&gt;Can you provide a sample as text? I would also look for a few quotes or , in those text fields and include those in the sample. If you can't post real data, feel free to include fake data. &lt;BR /&gt;&lt;BR /&gt;You can read everything in as text, remove the pipes with COMPRESS() and then convert the desired fields to numeric.</description>
    <pubDate>Wed, 06 Jul 2022 22:41:18 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2022-07-06T22:41:18Z</dc:date>
    <item>
      <title>How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821945#M324521</link>
      <description>&lt;P&gt;I have a text file with comma as delimiter. However, the field values I want to read are further wrapped in pipe characters for 24 out of 26 column variables.&lt;/P&gt;&lt;P&gt;For clarity, please see&amp;nbsp;the attached photo.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BranManderly34_0-1657146617136.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73012i111CEC8B5DA31B70/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BranManderly34_0-1657146617136.png" alt="BranManderly34_0-1657146617136.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;What I want eventually is a SAS dataset in which text fields are displayed without the pipe character. For example, the first row and the first column of my dataset should be just A170015889 without being surrounded by pipe characters. Without those characters, importing is relatively straightforward with the following code:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;data all_trans;&lt;BR /&gt;infile "F:\UNL_academic\Insider Trading\Insider Trading_PIandEPU\&lt;BR /&gt;data_from_open_secrets\PFDtransactions_with_data_definitions.txt"&lt;BR /&gt;dlm = ',' dsd firstobs=2 missover;&lt;BR /&gt;input ID:best20. Chamber CID CalendarYear ReportType Asset4SJD Asset4Transacted Orgname&lt;BR /&gt;Ultorg RealCode Source Asset4Descrip Orgname2 Ultorg2 RealCode2 Source2&lt;BR /&gt;Asset4Purchased Asset4Sold Asset4Exchanged Asset4Date Asset4DateText&lt;BR /&gt;Asset4TransAmt Asset4ExactAmt CofD TransNotes Dupe;&lt;BR /&gt;run;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Because of those pipe characters, when I run the code, SAS returns null (or just .) in the dataset. Can someone please help me overcome this problem? I tried searching online for answers and I couldn't find a solution to my problem. Thanks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 22:35:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821945#M324521</guid>
      <dc:creator>BranManderly34</dc:creator>
      <dc:date>2022-07-06T22:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821947#M324522</link>
      <description>I suspect this is done because your file has embedded comma's and/or quotes in the variables....&lt;BR /&gt;Can you provide a sample as text? I would also look for a few quotes or , in those text fields and include those in the sample. If you can't post real data, feel free to include fake data. &lt;BR /&gt;&lt;BR /&gt;You can read everything in as text, remove the pipes with COMPRESS() and then convert the desired fields to numeric.</description>
      <pubDate>Wed, 06 Jul 2022 22:41:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821947#M324522</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-07-06T22:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821948#M324523</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data all_trans;
infile "F:\UNL_academic\Insider Trading\Insider Trading_PIandEPU\
data_from_open_secrets\PFDtransactions_with_data_definitions.txt"
dlm = ',' dsd firstobs=2 missover;
input ID $ Chamber $ CID $ CalendarYear $ ReportType $ Asset4SJD  $ Asset4Transacted $ Orgname $
Ultorg $ RealCode $ Source  $ Asset4Descrip $ Orgname2 $ Ultorg2 $ RealCode2 $ Source2 $
Asset4Purchased $ Asset4Sold $ Asset4Exchanged $ Asset4Date  $ Asset4DateText $
Asset4TransAmt $ Asset4ExactAmt $ CofD  $TransNotes $ Dupe $;
run;

data all_trans_nopipes;
set all_trans;
array _char(*) $ ID --Dupe;
do i=1 to dim(char);
_char(i) = compress(_char(i), '|');
end;

*do conversions required here;

YearCalender = input(CalenderYear, 8.);
....
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I know that won't work, the lengths on variables aren't correct for starters but it may help you get started.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 22:45:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821948#M324523</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-07-06T22:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821973#M324531</link>
      <description>&lt;P&gt;Why not just fix the lines to look more like a normal CSV file?&lt;/P&gt;
&lt;P&gt;If the lines are short enough you can even do it on the fly by modifying the _INFILE_ buffer.&amp;nbsp; So change the pipes to quotes.&amp;nbsp; If there are any actual quotes change them to two quotes.&amp;nbsp; (Make sure to double the quotes before converting the pipes to quotes.)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data all_trans;
  infile "your long filename goes here"
    dsd firstobs=2 truncover 
  ;
  input @;
  _infile_=translate(tranwrd(_infile_,'"','""'),'"','|');
  input ID :$20. Chamber CID CalendarYear ReportType Asset4SJD Asset4Transacted
     Orgname Ultorg RealCode Source Asset4Descrip Orgname2 Ultorg2 RealCode2 Source2
     Asset4Purchased Asset4Sold Asset4Exchanged Asset4Date Asset4DateText
     Asset4TransAmt Asset4ExactAmt CofD TransNotes Dupe
  ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Make sure to either DEFINE the variables to have the right type (and for character variables the right length) before the INPUT statement by using a LENGTH or ATTRIB statement before the variables are using in other statements, like INPUT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or add in-line informats in the INPUT statement &lt;STRONG&gt;for the variables that need them&lt;/STRONG&gt;.&amp;nbsp; SAS does NOT need be told to use special informats for most variables.&amp;nbsp; Although if you have not defined in advance as character you can give SAS the information it needs to guess how long you want character variables defined by adding the $ informat to the input statement.&amp;nbsp; Then it will guess to make the variable length match the width on the informat.&amp;nbsp; Like the $20. informat I added for the ID variable in the example above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure to include the colon modifier before the informat specification so that the input continues to use LIST MODE instead of FORMATTED MODE input.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 03:15:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821973#M324531</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-07T03:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821974#M324532</link>
      <description>&lt;P&gt;You could also just try using DLMSTR='|,|' instead of DSD and DLM= options.&lt;/P&gt;
&lt;P&gt;Then you just need to deal with the leading | on the first variable and the trailing | on the last variable.&lt;/P&gt;
&lt;P&gt;The leading pipe you could skip by starting your INFILE statement with&amp;nbsp;@ 2 so it just skips the first byte on the line.&amp;nbsp; Note this will not work if the first field is ever empty.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 03:22:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/821974#M324532</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-07T03:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822121#M324604</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BranManderly34_1-1657220032505.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73031iB3C0724FF39B81EA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BranManderly34_1-1657220032505.png" alt="BranManderly34_1-1657220032505.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Some values of variables contain ',' or ';' and what makes the matter slightly more complicated is that not all fields are wrapped in || characters. 2 out of 2 columns will not have field values wrapped in || characters.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 18:56:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822121#M324604</guid>
      <dc:creator>BranManderly34</dc:creator>
      <dc:date>2022-07-07T18:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822126#M324605</link>
      <description>&lt;P&gt;Please post text as text and not as pictures.&lt;/P&gt;
&lt;P&gt;It looks like the missing values do not have the pipes added.&lt;/P&gt;
&lt;P&gt;Just convert the file to a new file and read that.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
   infile 'myfile.txt' dsd truncover ;
   file 'myfile_fixed.txt' dsd ;
   do i = 1 to 20 ;
      input string :$1000. @;
      if string=: '|' then string=substrn(string,2,length(string)-2);
      put string @;
   end;
   put;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If the number of fields is not 20 then just change that.&amp;nbsp; If the longest field needs more than 1000 bytes then change the informat width.&lt;/P&gt;
&lt;P&gt;If the number varies it is possible with some extra INFILE options and logic to copy all of the fields without knowing in advance how many fields will be on a line.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 19:12:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822126#M324605</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-07T19:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822127#M324606</link>
      <description>&lt;P&gt;I am afraid this won't work because not all variables are wrapped in pipe characters. the dataset has 26 columns, and 2 out of 26 have values without pipe characters.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 19:11:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822127#M324606</guid>
      <dc:creator>BranManderly34</dc:creator>
      <dc:date>2022-07-07T19:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822130#M324609</link>
      <description>&lt;P&gt;That shouldn't affect the solution I proposed, did you test it?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/429109"&gt;@BranManderly34&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BranManderly34_1-1657220032505.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/73031iB3C0724FF39B81EA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BranManderly34_1-1657220032505.png" alt="BranManderly34_1-1657220032505.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Some values of variables contain ',' or ';' and what makes the matter slightly more complicated is that not all fields are wrapped in || characters. 2 out of 2 columns will not have field values wrapped in || characters.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 19:14:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822130#M324609</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-07-07T19:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822137#M324615</link>
      <description>&lt;PRE&gt;&lt;CODE class=""&gt;data all_trans;
infile "F:\UNL_academic\Insider Trading\Insider Trading_PIandEPU\
data_from_open_secrets\PFDtransactions_with_data_definitions.txt"
dlm = ',' dsd firstobs=2 missover;
input ID: $18. Chamber: $3. CID:$12. CalendarYear:$6. ReportType: $3. Asset4SJD: $3. 
Asset4Transacted: $102. Orgname: $42. Ultorg: $42. RealCode: $7. Source: $7. 
Asset4Descrip: $102. Orgname2: $42. Ultorg2: $42. RealCode2: $7. Source2: $7.
Asset4Purchased: $3. Asset4Sold: $3. Asset4Exchanged: $3. Asset4Date: Best12. 
Asset4DateText: $52. Asset4TransAmt: $6. Asset4ExactAmt: Best24. CofD:$3.  
TransNotes: $102. Dupe: $3.;
run;

data all_trans_nopipes;
set all_trans;
array _char(*) $ ID --Dupe;
do i=1 to dim(char);
_char(i) = compress(_char(i), '|');
end;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first block of code can read the data as text, but when I execute the second block, I am getting two errors as follows:&lt;/P&gt;&lt;P&gt;All variables in array list must be the same type, i.e., all numeric or character&lt;/P&gt;&lt;P&gt;The DIM, LBOUND, and HBOUND functions require an array name for the first argument.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 19:35:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822137#M324615</guid>
      <dc:creator>BranManderly34</dc:creator>
      <dc:date>2022-07-07T19:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822141#M324618</link>
      <description>&lt;P&gt;Because you did not read them all as character.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Asset4Date: Best12. &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The BEST informat does not really exist but it will be treated as an alias for the normal numeric informat.&lt;/P&gt;
&lt;P&gt;So you are defining ASSET4DATE as numeric.&lt;/P&gt;
&lt;P&gt;If that variable does not ever contain the pipe characters then the INPUT could work, but in that case you need to exclude that variable from the list of variable in the ARRAY in the second step.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 19:42:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822141#M324618</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-07-07T19:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822142#M324619</link>
      <description>&lt;P&gt;I see. I just started on the SAS and now I kind of understand why the second block doesn't work. Let me work it out.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 19:48:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822142#M324619</guid>
      <dc:creator>BranManderly34</dc:creator>
      <dc:date>2022-07-07T19:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822147#M324621</link>
      <description>&lt;P&gt;You read in Asset4Date and Asset4ExactAMT as numeric not character.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try using _character_ to refer to all character variables instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data all_trans_nopipes;
set all_trans;
array _char(*) $ _character_;
do i=1 to dim(char);
_char(i) = compress(_char(i), '|');
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 20:18:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822147#M324621</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2022-07-07T20:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import a text file in which its field values are wrapped in pipe character?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822163#M324633</link>
      <description>&lt;PRE&gt;&lt;CODE class=""&gt;data all_trans;
infile "mypath\PFDtransactions_with_data_definitions.txt"
dlm = ',' dsd firstobs=2 missover;
input ID: $18. Chamber: $3. CID:$12. CalendarYear:$6. ReportType: $3. Asset4SJD: $3.
Asset4Transacted: $102. Orgname: $42. Ultorg: $42. RealCode: $7. Source: $7.
Asset4Descrip: $102. Orgname2: $42. Ultorg2: $42. RealCode2: $7. Source2: $7.
Asset4Purchased: $3. Asset4Sold: $3. Asset4Exchanged: $3. Asset4Date: $10.
Asset4DateText: $52. Asset4TransAmt: $6. Asset4ExactAmt: $12. CofD:$3.
TransNotes: $102. Dupe: $3.;
run;

data all_trans_nopipes;
set all_trans;
array myarray(*) $ ID --Dupe;
do i=1 to dim(myarray);
myarray(i) = compress(myarray(i), '|');
end;
Asset4Date_dt = input(Asset4Date,MMDDYY10.);
format Asset4Date_dt MMDDYY10.;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is what I have for now, and it seems to work. Thanks a million!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 21:19:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-import-a-text-file-in-which-its-field-values-are/m-p/822163#M324633</guid>
      <dc:creator>BranManderly34</dc:creator>
      <dc:date>2022-07-07T21:19:58Z</dc:date>
    </item>
  </channel>
</rss>

