<?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: Regex Remove HTML Containers in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/163272#M17239</link>
    <description>&lt;P&gt;Thanks!&amp;nbsp; This was just what I needed to solve my problem.&lt;/P&gt;</description>
    <pubDate>Wed, 16 May 2018 06:18:28 GMT</pubDate>
    <dc:creator>halfling</dc:creator>
    <dc:date>2018-05-16T06:18:28Z</dc:date>
    <item>
      <title>Regex Remove HTML Containers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/45221#M17236</link>
      <description>&lt;P&gt;My input includes html containers and I need to remove them (characters and html commands) and leave just the actual text values:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;div&amp;gt;How do I remove the html tags?&amp;lt;/div&amp;gt;&amp;lt;br&amp;gt;&amp;lt;div&amp;gt;Looking forward to the answer.&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need to see: How do I remove the html tags? Looking forward to the answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 22:35:28 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/45221#M17236</guid>
      <dc:creator>Afammy</dc:creator>
      <dc:date>2024-06-13T22:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regex Remove HTML Containers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/45235#M17237</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/9482"&gt;@Afammy&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I took a stab at this for you using your sample container entry.&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="Screen Shot 2017-02-01 at 11.39.38 AM.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/12347i98C8F3310629C5AF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2017-02-01 at 11.39.38 AM.png" alt="Screen Shot 2017-02-01 at 11.39.38 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I added a space between the text. &amp;nbsp;You might want to have a PIPE delimiter left behind instead of the space. &amp;nbsp;Please try this and let me know if it helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Trim(
          Regex_Replace(
                                    Regex_Replace([HTML_Container],"&amp;lt;.*?&amp;gt;",'|'), "[|]{1,}",
                                                              ' ')
                                    )
&lt;/PRE&gt;
&lt;PRE&gt;Trim(
          Regex_Replace(
                                    Regex_Replace([HTML_Container],"&amp;lt;.*?&amp;gt;",'|'), "[|]{1,}",
                                                              '|')
                                    )
&lt;/PRE&gt;
&lt;P&gt;I've got the two sets of code (space and pipe replacements) above. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Trim() gets rid of any spaces at the front or end of your field.&lt;/P&gt;
&lt;P&gt;Regex_Replace uses a wild card for all sets of data enclosed by &amp;lt;&amp;gt; and replaces them with a '|' pipe.&lt;/P&gt;
&lt;P&gt;Regex_Replace uses a search for &amp;nbsp;multiple pipes and replaces them with a single pipe.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At least for your test data it seems to work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 16:52:04 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/45235#M17237</guid>
      <dc:creator>MarqueeCrew</dc:creator>
      <dc:date>2017-02-01T16:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Regex Remove HTML Containers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/45240#M17238</link>
      <description>&lt;P&gt;Thanks @MarqueeCrew! Worked like a charm. You also gave me a mix of formula and regex to learn and use moving forward.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 17:14:51 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/45240#M17238</guid>
      <dc:creator>Afammy</dc:creator>
      <dc:date>2017-02-01T17:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regex Remove HTML Containers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/163272#M17239</link>
      <description>&lt;P&gt;Thanks!&amp;nbsp; This was just what I needed to solve my problem.&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 06:18:28 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/163272#M17239</guid>
      <dc:creator>halfling</dc:creator>
      <dc:date>2018-05-16T06:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regex Remove HTML Containers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/251922#M51397</link>
      <description>&lt;P&gt;Thank you!! Just what I needed right now.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Aug 2018 05:29:16 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/251922#M51397</guid>
      <dc:creator>wale_ilori</dc:creator>
      <dc:date>2018-08-27T05:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regex Remove HTML Containers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/1083791#M268453</link>
      <description>&lt;P&gt;Thankyou so much for the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 05:57:50 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/1083791#M268453</guid>
      <dc:creator>AshimaPahwa</dc:creator>
      <dc:date>2023-02-17T05:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regex Remove HTML Containers</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/1168240#M289054</link>
      <description>&lt;P&gt;Thanks Amazing!&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 12:44:51 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Remove-HTML-Containers/m-p/1168240#M289054</guid>
      <dc:creator>sdodero</dc:creator>
      <dc:date>2023-07-27T12:44:51Z</dc:date>
    </item>
  </channel>
</rss>

