<?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: getting wrong output pls help this code once in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444663#M111365</link>
    <description>&lt;P&gt;So let's have a look at your datalines:&lt;/P&gt;
&lt;PRE&gt; RULE:      ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0                     
 
 81  CHAR   .1219 ALAN ranju red 210 192                                                    
     ZONE   03333244442766672766233323332222222222222222222222222222222222222222222222222222
     NUMR   9121901C1E021EA50254021001920000000000000000000000000000000000000000000000000000
&lt;/PRE&gt;
&lt;P&gt;First, you can see that your dataline starts with a tab character (hex 09) that should not be there.&lt;/P&gt;
&lt;P&gt;Then you use dsd, but have no quotes around text values, and you use a specific position (25-30) for team; looking at the dataline, one can see that there is nothing there after &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/75109"&gt;@30&lt;/a&gt;, so SAS skips to the next line to read startwi and endwi, stumbling there.&lt;/P&gt;
&lt;P&gt;The dsd also causes SAS to interpret the whole line as 1 data item.&lt;/P&gt;
&lt;P&gt;Try this code instead:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data club;
infile datalines;
input
  idnumber
  name1 $
  name2 $
  team $
  startwi
  endwi
;
datalines;
1219 ALAN ranju red 210 192
1221 JIM rose YELLOW 220 220
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 12 Mar 2018 07:56:43 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-03-12T07:56:43Z</dc:date>
    <item>
      <title>getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444648#M111350</link>
      <description>&lt;P&gt;can any one please help me this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data club;&lt;BR /&gt;infile datalines dsd;&lt;BR /&gt;input idnumber 1-4&lt;BR /&gt;name : $18.&lt;BR /&gt;team : $25-30&lt;BR /&gt;startwi endwi;&lt;BR /&gt;datalines;&lt;BR /&gt;&lt;BR /&gt;1023 DAVID shaw RED 189 155&lt;BR /&gt;1049 AMELIA verna YELLOW 145 125&lt;BR /&gt;1219 ALAN ranju red 210 192&lt;BR /&gt;1246 RAVI shankar YELLOW 177 177&lt;BR /&gt;1078 ASHELY valley RED 127 118&lt;BR /&gt;1221 JIM rose YELLOW 220 220&lt;BR /&gt;;&lt;BR /&gt;proc print data=club;&lt;BR /&gt;id idnumber;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output is getting worng&amp;nbsp;&lt;/P&gt;&lt;P&gt;pls check once&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;idnumber name team startwi endwi.121&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9 ALAN ranju red 2&lt;/TD&gt;&lt;TD&gt;192&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 12 Mar 2018 07:10:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444648#M111350</guid>
      <dc:creator>SRINIVAS_N</dc:creator>
      <dc:date>2018-03-12T07:10:55Z</dc:date>
    </item>
    <item>
      <title>getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444650#M111360</link>
      <description>&lt;P&gt;can any one please help me this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data club;&lt;BR /&gt;infile datalines dsd;&lt;BR /&gt;input idnumber 1-4&lt;BR /&gt;name : $18.&lt;BR /&gt;team : $25-30&lt;BR /&gt;startwi endwi;&lt;BR /&gt;datalines;&lt;BR /&gt;&lt;BR /&gt;1023 DAVID shaw RED 189 155&lt;BR /&gt;1049 AMELIA verna YELLOW 145 125&lt;BR /&gt;1219 ALAN ranju red 210 192&lt;BR /&gt;1246 RAVI shankar YELLOW 177 177&lt;BR /&gt;1078 ASHELY valley RED 127 118&lt;BR /&gt;1221 JIM rose YELLOW 220 220&lt;BR /&gt;;&lt;BR /&gt;proc print data=club;&lt;BR /&gt;id idnumber;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output is getting worng&amp;nbsp;&lt;/P&gt;&lt;P&gt;pls check once&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="save.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19128i81C6BA87EB088060/image-size/large?v=v2&amp;amp;px=999" role="button" title="save.png" alt="save.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 07:12:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444650#M111360</guid>
      <dc:creator>SRINIVAS_N</dc:creator>
      <dc:date>2018-03-12T07:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444653#M111361</link>
      <description>Please explain what goes wrong! Posting full log is recommended.</description>
      <pubDate>Mon, 12 Mar 2018 07:32:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444653#M111361</guid>
      <dc:creator>error_prone</dc:creator>
      <dc:date>2018-03-12T07:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444654#M111353</link>
      <description>Please don't double post one question.&lt;BR /&gt;Removing the blank line after datalines-statement will fix one issue.</description>
      <pubDate>Mon, 12 Mar 2018 07:35:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444654#M111353</guid>
      <dc:creator>error_prone</dc:creator>
      <dc:date>2018-03-12T07:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444657#M111362</link>
      <description>&lt;P&gt;pls check the log once&amp;nbsp;&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="save1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19130i9082E9156722C6A3/image-size/large?v=v2&amp;amp;px=999" role="button" title="save1.png" alt="save1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 07:38:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444657#M111362</guid>
      <dc:creator>SRINIVAS_N</dc:creator>
      <dc:date>2018-03-12T07:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444658#M111355</link>
      <description>I had tried removing blankline after datalines still it is not getting&lt;BR /&gt;output correctly</description>
      <pubDate>Mon, 12 Mar 2018 07:41:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444658#M111355</guid>
      <dc:creator>SRINIVAS_N</dc:creator>
      <dc:date>2018-03-12T07:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444659#M111363</link>
      <description>&lt;P&gt;The log is pure TEXT and can be copy/pasted into a window opened with the {i} button (use that button to preserve the formatting).&lt;/P&gt;
&lt;P&gt;Post the complete log of the step (include all step code). If you are reading from an external file, attach that file (at least a few lines that cause the ERRORs) to your post. Or use the same method as mentioned for the log to post the text.&lt;/P&gt;
&lt;P&gt;Also see this helper page: &lt;A href="https://communities.sas.com/t5/help/faqpage/faq-category-id/posting?nobounce" target="_blank"&gt;https://communities.sas.com/t5/help/faqpage/faq-category-id/posting?nobounce&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 07:45:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444659#M111363</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-12T07:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444660#M111364</link>
      <description>&lt;PRE&gt; 
 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 70         
 71         
 72         data club;
 73         infile datalines dsd;
 74         input idnumber 1-4
 75         name : $18.
 76         team : $25-30
 77         startwi endwi;
 78         datalines;
 
 NOTE: Invalid data for startwi in line 80 1-33.
 NOTE: Invalid data for endwi in line 81 1-28.
 RULE:      ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0                     
 
 81  CHAR   .1219 ALAN ranju red 210 192                                                    
     ZONE   03333244442766672766233323332222222222222222222222222222222222222222222222222222
     NUMR   9121901C1E021EA50254021001920000000000000000000000000000000000000000000000000000
 NOTE: Invalid data errors for file CARDS occurred outside the printed range.
 NOTE: Increase available buffer lines with the INFILE n= option.
 idnumber=102 name=3 DAVID shaw RED 1 team=155 startwi=. endwi=. _ERROR_=1 _N_=1
 NOTE: Invalid data for startwi in line 83 1-31.
 NOTE: Invalid data for endwi in line 84 1-29.
 
 84  CHAR   .1221 JIM rose YELLOW 220 220                                                   
     ZONE   03333244427676254444523332333222222222222222222222222222222222222222222222222222
     NUMR   912210A9D02F35095CCF702200220000000000000000000000000000000000000000000000000000
 NOTE: Invalid data errors for file CARDS occurred outside the printed range.
 NOTE: Increase available buffer lines with the INFILE n= option.
 idnumber=124 name=6 RAVI shankar YEL team=W  177 startwi=. endwi=. _ERROR_=1 _N_=2
 NOTE: SAS went to a new line when INPUT statement reached past the end of a line.
 NOTE: The data set WORK.CLUB has 2 observations and 5 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       user cpu time       0.00 seconds
       system cpu time     0.00 seconds
       memory              790.53k
       OS Memory           29352.00k
       Timestamp           03/12/2018 07:39:46 AM
       Step Count                        230  Switch Count  2
       Page Faults                       0
       Page Reclaims                     144
       Page Swaps                        0
       Voluntary Context Switches        10
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           272
       
 85         ;
 
 86         
 86       !  proc print data=club;
 87         id idnumber;
 88         run;
 
 NOTE: There were 2 observations read from the data set WORK.CLUB.
 NOTE: PROCEDURE PRINT used (Total process time):
       real time           0.01 seconds
       user cpu time       0.01 seconds
       system cpu time     0.00 seconds
       memory              1582.09k
       OS Memory           29352.00k
       Timestamp           03/12/2018 07:39:46 AM
       Step Count                        231  Switch Count  0
       Page Faults                       0
       Page Reclaims                     150
       Page Swaps                        0
       Voluntary Context Switches        0
       Involuntary Context Switches      0
       Block Input Operations            0
       Block Output Operations           8
       
 
 89         
 90         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 102        &lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Mar 2018 07:45:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444660#M111364</guid>
      <dc:creator>SRINIVAS_N</dc:creator>
      <dc:date>2018-03-12T07:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444663#M111365</link>
      <description>&lt;P&gt;So let's have a look at your datalines:&lt;/P&gt;
&lt;PRE&gt; RULE:      ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0                     
 
 81  CHAR   .1219 ALAN ranju red 210 192                                                    
     ZONE   03333244442766672766233323332222222222222222222222222222222222222222222222222222
     NUMR   9121901C1E021EA50254021001920000000000000000000000000000000000000000000000000000
&lt;/PRE&gt;
&lt;P&gt;First, you can see that your dataline starts with a tab character (hex 09) that should not be there.&lt;/P&gt;
&lt;P&gt;Then you use dsd, but have no quotes around text values, and you use a specific position (25-30) for team; looking at the dataline, one can see that there is nothing there after &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/75109"&gt;@30&lt;/a&gt;, so SAS skips to the next line to read startwi and endwi, stumbling there.&lt;/P&gt;
&lt;P&gt;The dsd also causes SAS to interpret the whole line as 1 data item.&lt;/P&gt;
&lt;P&gt;Try this code instead:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data club;
infile datalines;
input
  idnumber
  name1 $
  name2 $
  team $
  startwi
  endwi
;
datalines;
1219 ALAN ranju red 210 192
1221 JIM rose YELLOW 220 220
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 07:56:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444663#M111365</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-12T07:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444664#M111366</link>
      <description>&lt;P&gt;I merged the double-post.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:00:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444664#M111366</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-12T08:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444669#M111367</link>
      <description>&lt;P&gt;The problem is that your NAME variable is not read correctly. It consists of first name and last name, but the way you read it only the first name gets into the NAME variable. You can do it like this, provided that you do not suddenly get a person with a middle name:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data club;
infile datalines;
length idnumber 8 firstname lastname $10 team $6 startwi endwi 8;
input idnumber--endwi;
datalines;
1023 DAVID shaw RED 189 155
1049 AMELIA verna YELLOW 145 125
1219 ALAN ranju red 210 192
1246 RAVI shankar YELLOW 177 177
1078 ASHELY valley RED 127 118
1221 JIM rose YELLOW 220 220
;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:19:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444669#M111367</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2018-03-12T08:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444674#M111368</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that the data here is non standard data with out delimiter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the non standard data with out delimiter how can you use column input method.?&lt;/P&gt;&lt;P&gt;Why Dsd you have written it is just a space delimiter data?&lt;/P&gt;&lt;P&gt;And After the name the data should contain 2 spaces in the data. or you can split the Name variable into two like first name and lastname.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data club;&lt;BR /&gt;infile datalines;&lt;BR /&gt;input idnumber 1-4&lt;BR /&gt;name $&amp;amp;13.&lt;BR /&gt;team :$&lt;BR /&gt;startwi endwi;&lt;BR /&gt;datalines;&lt;BR /&gt;1023 DAVID shaw RED 189 155&lt;BR /&gt;1049 AMELIA verna YELLOW 145 125&lt;BR /&gt;1219 ALAN ranju red 210 192&lt;BR /&gt;1246 RAVI shankar YELLOW 177 177&lt;BR /&gt;1078 ASHELY valley RED 127 118&lt;BR /&gt;1221 JIM rose YELLOW 220 220&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 08:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444674#M111368</guid>
      <dc:creator>srinath3111</dc:creator>
      <dc:date>2018-03-12T08:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444680#M111370</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below code will also give u ur desired output:-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data club;&lt;BR /&gt;infile datalines dsd;&lt;BR /&gt;input idnumber 1-4 @5 name $14. &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/162406"&gt;@20&lt;/a&gt; team $6. @27 startwi 3. &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/75709"&gt;@31&lt;/a&gt; endwi;&lt;BR /&gt;datalines;&lt;BR /&gt;1023 DAVID shaw RED 189 155&lt;BR /&gt;1049 AMELIA verna YELLOW 145 125&lt;BR /&gt;1219 ALAN ranju red 210 192&lt;BR /&gt;1246 RAVI shankar YELLOW 177 177&lt;BR /&gt;1078 ASHELY valley RED 127 118&lt;BR /&gt;1221 JIM rose YELLOW 220 220&lt;BR /&gt;;&lt;BR /&gt;proc print data=club;&lt;BR /&gt;id idnumber;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2018 09:15:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444680#M111370</guid>
      <dc:creator>MG18</dc:creator>
      <dc:date>2018-03-12T09:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: getting wrong output pls help this code once</title>
      <link>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444730#M111380</link>
      <description>No, it won't. The program runs without any errors, but it is not correct.</description>
      <pubDate>Mon, 12 Mar 2018 13:19:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/getting-wrong-output-pls-help-this-code-once/m-p/444730#M111380</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2018-03-12T13:19:05Z</dc:date>
    </item>
  </channel>
</rss>

