<?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 to Split Text depending upon lenght in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182608#M383037</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;glad it helped&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Sep 2016 19:36:59 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2016-09-27T19:36:59Z</dc:date>
    <item>
      <title>How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182600#M383029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a one excel file having addresses in one cell including special characters. First I want to remove the special characters and then want to split text into 3 rows, But,&amp;nbsp; first 2 rows should contains only 20 characters each. Last row can contain remaining characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I able to remove special characters from the string. Help is required to split the string into 3 different rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 18:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182600#M383029</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-09-26T18:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182601#M383030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/138733_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or do you need complete words within the 20 character limits in one cell?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 18:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182601#M383030</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-26T18:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182602#M383031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks sunny...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I actually want complete words with 20 character limits in one cell..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 18:28:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182602#M383031</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-09-26T18:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182603#M383032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This might not be the best way to do this, but seems to work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; RowNo() as Key,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Len(Temp) as Temp2;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; SubField(New_Address, ' ') as Temp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; PurgeChar(Address,'%,#,!,@,$,,') as New_Address;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Address&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[chararcter_lenghth.xlsx]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TempTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(Cul &amp;gt;= Previous(Cul), Alt(Peek('SNo'), 1), RangeSum(Peek('SNo'), 1)) as SNo;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If(New_Address = Previous(New_Address), If(RangeSum(Temp2, Peek('Cul')) &amp;lt;= 20, RangeSum(Temp2, Peek('Cul')), Temp2), Temp2) as Cul&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Order By New_Address, Key;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Join (A)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD New_Address,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; SNo,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Concat(Temp, ' ') as New_Address1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident TempTable&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By New_Address, SNo;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table TempTable;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/138734_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 18:49:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182603#M383032</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-26T18:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182604#M383033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe one solution might be also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_234186_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/138752_QlikCommunity_Thread_234186_Pic1.JPG" style="height: 293px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14749228311713220 jive_text_macro" jivemacro_uid="_14749228311713220"&gt;
&lt;P&gt;SET vIsLetter = (Upper($1)&amp;lt;&amp;gt;Lower($1));&lt;/P&gt;
&lt;P&gt;SET vIsNumOrLetter = (IsNum($1) or $(vIsLetter($1)));&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;mapKeepNumLetter:&lt;/P&gt;
&lt;P&gt;Mapping&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If($(vIsNumOrLetter(Char)) or Char=' ', Char, '');&lt;/P&gt;
&lt;P&gt;LOAD Chr(RecNo()) as Char&lt;/P&gt;
&lt;P&gt;AutoGenerate 65535;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mid(Address,Len(AddressRow1&amp;amp;AddressRow2)+1) as AddressRow3;&lt;/P&gt;
&lt;P&gt;LOAD Address,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AddressRow1,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left(AddressTemp,If(Index(Left(AddressTemp,20),' ',-1),Index(Left(AddressTemp,20),' ',-1),20)) as AddressRow2;&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mid(Address,Len(AddressRow1)+1) as AddressTemp;&lt;/P&gt;
&lt;P&gt;LOAD Address,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left(Address,If(Index(Left(Address,20),' ',-1),Index(Left(Address,20),' ',-1),20)) as AddressRow1;&lt;/P&gt;
&lt;P&gt;LOAD MapSubString('mapKeepNumLetter',Address) as Address&lt;/P&gt;
&lt;P&gt;Inline [&lt;/P&gt;
&lt;P&gt;Address&lt;/P&gt;
&lt;P&gt;"ABC safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCsafalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCsafalyachs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCsafalyachs.,DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCD safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDE safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEF safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFG safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGH safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHI safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJ safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJK safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKL safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLM safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMN safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNO safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOP safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQ safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQR safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRS safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRST safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRSTU safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRSTUV safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRSTUVW safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRSTUVWX safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRSTUVWXY safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;"ABCDEFGHIJKLMNOPQRSTUVWXYZ safalya chs., DOCYard, Kelva mandir road France @$!"&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 20:47:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182604#M383033</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-09-26T20:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182605#M383034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;may be&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG&gt;Temp:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 10pt;"&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 10pt;"&gt;Load *,&lt;BR /&gt; Left(Address,FindOneOf(Address,' ',SubStringCount(Left(Address,21),' '))) as NewAddress;&lt;BR /&gt; LOAD IterNo() as RowNr,PurgeChar(Address,'%,#,!,@,$,,') as Address&lt;BR /&gt; FROM&lt;BR /&gt; [chararcter_lenghth.xlsx]&lt;BR /&gt; (ooxml, embedded labels, table is Sheet1)&lt;BR /&gt; While IterNo() &amp;lt;= 3;&lt;BR /&gt; &lt;BR /&gt; Table:&lt;BR /&gt; NoConcatenate&lt;BR /&gt; Load RowNr,Address,&lt;BR /&gt; Pick(Match(RowNr,1,2,3),&lt;BR /&gt; NewAddress,&lt;BR /&gt; Left(Replace(Address,(NewAddress),''),FindOneOf(Replace(Address,(NewAddress),''),' ',SubStringCount(Left(Replace(Address,(NewAddress),''),21),' '))),&lt;BR /&gt; Replace(Replace(Address,Peek(NewAddress,-2),''),Peek(NewAddress),'')&lt;BR /&gt; ) as NewAddress&lt;BR /&gt; Resident Temp;&lt;BR /&gt; &lt;BR /&gt; Drop Table&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG&gt; Temp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt;"&gt;&lt;STRONG&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/138785_pastedImage_8.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt;"&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; font-size: 10pt;"&gt;&lt;STRONG&gt;Antonio&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 08:01:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182605#M383034</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2016-09-27T08:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182606#M383035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Macro...same thing i am looking..Great..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 16:30:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182606#M383035</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-09-27T16:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182607#M383036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny and Antonio...for your Help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 16:31:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182607#M383036</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-09-27T16:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to Split Text depending upon lenght</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182608#M383037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;glad it helped&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 19:36:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-Split-Text-depending-upon-lenght/m-p/1182608#M383037</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-09-27T19:36:59Z</dc:date>
    </item>
  </channel>
</rss>

