<?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: Challenge #56: Parsing and Counting Hastags in Weekly Challenges</title>
    <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46374#M384</link>
    <description>&lt;P&gt;The solution for Challenge #56 is now posted! It's great to see the many way this was solved!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2017 15:47:35 GMT</pubDate>
    <dc:creator>JoeM</dc:creator>
    <dc:date>2017-02-13T15:47:35Z</dc:date>
    <item>
      <title>Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45704#M361</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last week's solution can be found &lt;A href="https://community.alteryx.com/t5/Weekly-Challenge/Challenge-55-2013-Alteryx-Grand-Prix-L1/td-p/44954" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This week's challenge, by its title, sounds like a simple task. However, a quick look at the data will show that it's not going to be just a summarize tool. If you have been meaning to finally learn the RegEx tool, this exercise will be a great&amp;nbsp;first foray with a relatively simple expression. In this exercise, we will take a set of very ugly data, parse it to find hashtags within a text field, find out how many times the hashtag was written, and what users used the hashtag.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you would like to learn more about our RegEx Tool - check out our &lt;A href="https://help.alteryx.com/current/index.htm#cshid=RegEx.htm" target="_self"&gt;help&lt;/A&gt; on the tool. If you would like a simpler RegEx overview, check &lt;A href="https://regexone.com/" target="_self"&gt;this&lt;/A&gt; interactive learning out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 19:04:58 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45704#M361</guid>
      <dc:creator>JoeM</dc:creator>
      <dc:date>2022-09-13T19:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45715#M362</link>
      <description>&lt;P&gt;I'm not sure the results provided are correct as they show a #followme result against id_str_13, but that text does not contain a hashtag, unless I'm missing something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That aside, my solution is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;I first created a RecordID field, then used Regex to parse the text field using the following:&lt;BR /&gt;&lt;BR /&gt;#.*?\&amp;gt;&lt;BR /&gt;&lt;BR /&gt;This splits the text by a hashtag and the end of the attached word. I used split to rows to provide a row per hashtag. I then filtered out the null rows, summarised and provided a count of the hashtags per id_str and used crosstab to pivot the data.&lt;BR /&gt;I then replaced nulls with zeros using the "Data Cleansing" tool and created the total.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Solution.PNG" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/12518i7E10CA57DD6E0CCD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Solution.PNG" alt="Solution.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="results.PNG" style="width: 534px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/12517i02B9EEB3F3ECA422/image-size/large?v=v2&amp;amp;px=999" role="button" title="results.PNG" alt="results.PNG" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Mon, 06 Feb 2017 17:02:02 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45715#M362</guid>
      <dc:creator>mceleavey</dc:creator>
      <dc:date>2017-02-06T17:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45724#M363</link>
      <description>&lt;P&gt;Of course I wanted to solve this without the use of RegEx (just being difficult). &amp;nbsp;I don't agree that id_str_13 should have any counts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-02-06 at 12.18.02 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/12519iF59FC7DFDD652A58/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-02-06 at 12.18.02 PM.png" alt="Screen Shot 2017-02-06 at 12.18.02 PM.png" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Mon, 06 Feb 2017 17:21:22 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45724#M363</guid>
      <dc:creator>MarqueeCrew</dc:creator>
      <dc:date>2017-02-06T17:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45735#M365</link>
      <description>&lt;P&gt;Good catch&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/3589"&gt;@mceleavey&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/3557"&gt;@MarqueeCrew&lt;/a&gt;, I have updated the start file to have the correct expected results.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2017 19:12:11 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45735#M365</guid>
      <dc:creator>JoeM</dc:creator>
      <dc:date>2017-02-06T19:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45768#M366</link>
      <description>&lt;P&gt;Nice challenge, have a great week guys!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 991px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/12531i9DD09A2E8D9FC19B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Feb 2017 22:13:16 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/45768#M366</guid>
      <dc:creator>Max06270</dc:creator>
      <dc:date>2017-02-06T22:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46041#M371</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="CompletedWorkbook.PNG" style="width: 816px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/12616i7F2831D8DB4817ED/image-size/large?v=v2&amp;amp;px=999" role="button" title="CompletedWorkbook.PNG" alt="CompletedWorkbook.PNG" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;I used&amp;nbsp;\#[a-zA-Z\d]+ to grab and tokenize into rows. Biggest difference is I am using the multi-field formula tool to rename and to return binary results for hashtag/string flags. this is in contrast to a formula and dynamic rename.&amp;nbsp;As always, there's more than one way to shine a penny!&lt;BR /&gt;&lt;BR /&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;I have attached my work for a deep dive-- fun stuff!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 02:18:46 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46041#M371</guid>
      <dc:creator>Harbinger</dc:creator>
      <dc:date>2017-02-09T02:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46353#M378</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know how the expression #.*?\&amp;gt; works. I was also trying to solve the challenge using RegEx tool but can't seem to figure out the correct expression to use. Appreciate your feedback on this :-)&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 09:55:09 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46353#M378</guid>
      <dc:creator>jury_maggay</dc:creator>
      <dc:date>2017-02-13T09:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46355#M379</link>
      <description>&lt;P&gt;In regex the .*? part simply means "take everything in between". From the dropdown you'll see a list of Regex tools that allow you to then construct things like that seen in the example.&lt;/P&gt;&lt;P&gt;The # here, followed by the .*? simply means take everything from the # symbol to...&lt;/P&gt;&lt;P&gt;I then used the \&amp;gt; which means "the end of the word".&lt;/P&gt;&lt;P&gt;So, in speech terms, it literally translates to "take everything from the # symbol to the end of the word".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regex really isn't as scary as it first appears. I myself had no Regex experience before using Alteryx but it's really easy once you get your head around it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try experimenting with the dropdown list:&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="screenshot.PNG" style="width: 284px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/12700i203D1786E3F2F64C/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot.PNG" alt="screenshot.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Feel free to message me if you have any questions or if you have a specific issue with which you're struggling.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 10:01:01 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46355#M379</guid>
      <dc:creator>mceleavey</dc:creator>
      <dc:date>2017-02-13T10:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46356#M380</link>
      <description>&lt;P&gt;Thank you so much for the explanation. I will surely reach out to you guys here in the forum should I need help on anything about Alteryx. Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 10:08:22 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46356#M380</guid>
      <dc:creator>jury_maggay</dc:creator>
      <dc:date>2017-02-13T10:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46363#M381</link>
      <description>&lt;P&gt;Also, a great reference for experimentation is &lt;A href="http://regexr.com/" target="_self"&gt;regexr.com&lt;/A&gt;. You can paste your own test text in the text box and get real-time feedback on how your regular expression evaluates on that text.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 14:36:54 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46363#M381</guid>
      <dc:creator>Harbinger</dc:creator>
      <dc:date>2017-02-13T14:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46364#M382</link>
      <description>&lt;P&gt;Good call.&lt;/P&gt;&lt;P&gt;Seconded.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 14:39:08 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46364#M382</guid>
      <dc:creator>mceleavey</dc:creator>
      <dc:date>2017-02-13T14:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46374#M384</link>
      <description>&lt;P&gt;The solution for Challenge #56 is now posted! It's great to see the many way this was solved!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2017 15:47:35 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/46374#M384</guid>
      <dc:creator>JoeM</dc:creator>
      <dc:date>2017-02-13T15:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/53602#M648</link>
      <description>&lt;P&gt;kinda a mix between a few of the solutions posted above.&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;BR /&gt;I used the text-to-column to split at the hash mark into rows, so that it can work over any number of hashtags in the text (probably a smarter way to do this using a tokenize in RegEx, but this was dead quick&lt;BR /&gt;Then regexed out the hashtag&lt;BR /&gt;then summarized it all up using a crosstab and a dynamic rename with formula&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Wed, 05 Apr 2017 17:22:34 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/53602#M648</guid>
      <dc:creator>SeanAdams</dc:creator>
      <dc:date>2017-04-05T17:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/54993#M714</link>
      <description>&lt;P&gt;My solution! :) [Edited to actually include the solution now... oops.]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WeeklyChallenge56.JPG" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/15425iF77FA053C083F2B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="WeeklyChallenge56.JPG" alt="WeeklyChallenge56.JPG" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2017 20:11:28 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/54993#M714</guid>
      <dc:creator>NicoleJohnson</dc:creator>
      <dc:date>2017-04-13T20:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/59038#M938</link>
      <description>&lt;P&gt;another fun one!&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;Spoiler&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/16534iE2AEAD22B4AB77F1/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Tue, 09 May 2017 00:48:22 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/59038#M938</guid>
      <dc:creator>estherb47</dc:creator>
      <dc:date>2017-05-09T00:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/59397#M974</link>
      <description>&lt;P&gt;I don't use regex a lot, so got stuck for quite some time on rows with&amp;nbsp;several hashtags.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-05-10 at 14.28.46.png" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/16636i99901B8893F8C273/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-05-10 at 14.28.46.png" alt="Screen Shot 2017-05-10 at 14.28.46.png" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Wed, 10 May 2017 13:39:07 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/59397#M974</guid>
      <dc:creator>Natasha</dc:creator>
      <dc:date>2017-05-10T13:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/63115#M1169</link>
      <description>&lt;P&gt;I spent ages trying to get the RegEx right but once I had conquered that the rest was plain sailing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Weekly Challenge 56.png" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/17548i7FF99C5E5F40E88F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Weekly Challenge 56.png" alt="Weekly Challenge 56.png" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Fri, 02 Jun 2017 16:51:23 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/63115#M1169</guid>
      <dc:creator>LordNeilLord</dc:creator>
      <dc:date>2017-06-02T16:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hastags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/77162#M1597</link>
      <description>&lt;P&gt;Solution Attached&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2017 13:33:35 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/77162#M1597</guid>
      <dc:creator>nick_ceneviva</dc:creator>
      <dc:date>2017-08-18T13:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/80276#M1723</link>
      <description>&lt;P&gt;Here's my solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="challenge-56.PNG" style="width: 999px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/21504iA8558C516F062AB7/image-size/large?v=v2&amp;amp;px=999" role="button" title="challenge-56.PNG" alt="challenge-56.PNG" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Sat, 09 Sep 2017 16:23:40 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/80276#M1723</guid>
      <dc:creator>jamielaird</dc:creator>
      <dc:date>2017-09-09T16:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Challenge #56: Parsing and Counting Hashtags</title>
      <link>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/82551#M1902</link>
      <description>&lt;LI-SPOILER&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 799px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/22003iB6590CACDFF5E70C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Fri, 22 Sep 2017 20:10:09 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Weekly-Challenges/Challenge-56-Parsing-and-Counting-Hashtags/m-p/82551#M1902</guid>
      <dc:creator>patrick_digan</dc:creator>
      <dc:date>2017-09-22T20:10:09Z</dc:date>
    </item>
  </channel>
</rss>

