<?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: Extract a column of data from a text file (part 2) in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Extract-a-column-of-data-from-a-text-file-part-2/m-p/892436#M214979</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/283913"&gt;@lizhaozhi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the updated workflow.&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="atcodedog05_0-1642572203977.png" style="width: 926px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/219180i64028DFB2945426D/image-dimensions/926x597?v=v2" width="926" height="597" role="button" title="atcodedog05_0-1642572203977.png" alt="atcodedog05_0-1642572203977.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps : )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jan 2022 06:03:41 GMT</pubDate>
    <dc:creator>atcodedog05</dc:creator>
    <dc:date>2022-01-19T06:03:41Z</dc:date>
    <item>
      <title>Extract a column of data from a text file (part 2)</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Extract-a-column-of-data-from-a-text-file-part-2/m-p/892407#M214968</link>
      <description>&lt;P&gt;This question is similar to&amp;nbsp;&lt;A href="https://community.alteryx.com/t5/Alteryx-Designer-Discussions/Extract-the-last-two-values-from-rows-in-text-file-with-RegEx/td-p/892017" target="_blank" rel="noopener"&gt;Solved: Extract the last two values from rows in text file... - Alteryx Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A text file includes data like this:&lt;/P&gt;&lt;P&gt;ISP-123456&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; C&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp;2&lt;/P&gt;&lt;P&gt;ASI-123213&amp;nbsp; &amp;nbsp; A&amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;PSI-123233&amp;nbsp; &amp;nbsp; A&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; 7&lt;/P&gt;&lt;P&gt;SRI-213232&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; 4&amp;nbsp; &amp;nbsp; 9&lt;/P&gt;&lt;P&gt;SIR-122323&amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp;24&amp;nbsp; &amp;nbsp;0&lt;/P&gt;&lt;P&gt;TIS-123980&amp;nbsp; &amp;nbsp; C&amp;nbsp; &amp;nbsp; B&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;BSI-231897&amp;nbsp; &amp;nbsp; 1&amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp;8&amp;nbsp; &amp;nbsp;T&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suppose that I always want to extract the values from column 4 ( 2, 1, 3, 4, 24, 8 ) if there is a value in that column. How do I achieve this?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 21:54:47 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Extract-a-column-of-data-from-a-text-file-part-2/m-p/892407#M214968</guid>
      <dc:creator>lizhaozhi</dc:creator>
      <dc:date>2024-06-13T21:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extract a column of data from a text file (part 2)</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Extract-a-column-of-data-from-a-text-file-part-2/m-p/892412#M214970</link>
      <description>&lt;P&gt;if regex_match([test],"^.*\s(\d+)(\s.*$)") then&lt;BR /&gt;regex_replace([test],"^.*\s(\d+)(\s.*$)","$1",0) else null() endif&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;works with your sample data - in a formula tool. This assumes that the second to last row should be a null and any entries that don't have a number in the fourth position should be nulls.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 04:14:21 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Extract-a-column-of-data-from-a-text-file-part-2/m-p/892412#M214970</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2022-01-19T04:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Extract a column of data from a text file (part 2)</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Extract-a-column-of-data-from-a-text-file-part-2/m-p/892436#M214979</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/283913"&gt;@lizhaozhi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the updated workflow.&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="atcodedog05_0-1642572203977.png" style="width: 926px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/219180i64028DFB2945426D/image-dimensions/926x597?v=v2" width="926" height="597" role="button" title="atcodedog05_0-1642572203977.png" alt="atcodedog05_0-1642572203977.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps : )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2022 06:03:41 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Extract-a-column-of-data-from-a-text-file-part-2/m-p/892436#M214979</guid>
      <dc:creator>atcodedog05</dc:creator>
      <dc:date>2022-01-19T06:03:41Z</dc:date>
    </item>
  </channel>
</rss>

