<?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: Cutting out fields from a delimeted string in Qlik Replicate</title>
    <link>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471713#M12075</link>
    <description>&lt;DIV id="bodyDisplay_2" class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;
&lt;DIV class="lia-message-body-content"&gt;
&lt;P&gt;Replace(string,Chr(124)&amp;amp;TextBetween(string,'|','|'),'')&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="AddMessageTags lia-message-tags lia-component-message-view-widget-tags"&gt;It appears to be a Qlik Sense command. For Replicate, it supports SQLite syntax only.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Desmond&lt;/DIV&gt;</description>
    <pubDate>Fri, 19 Jul 2024 11:26:22 GMT</pubDate>
    <dc:creator>DesmondWOO</dc:creator>
    <dc:date>2024-07-19T11:26:22Z</dc:date>
    <item>
      <title>Cutting out fields from a delimeted string</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471612#M12066</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a column in the source table that is a delimited string. It has multiple fields and one of the fields in this string contains sensitive information that can't be sent to the target db. Is there a way to cut out one field from the string? Has anyone before faced this use case?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, a record from the source table contains this string&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;"AAAAA|BBBBB|CCCCC|DDDDD"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;In the target we want it to appear like this&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;"AAAAA|CCCCC|DDDDD"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Mohammed&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Jul 2024 02:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471612#M12066</guid>
      <dc:creator>MoeE</dc:creator>
      <dc:date>2024-07-19T02:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Cutting out fields from a delimeted string</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471615#M12067</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;Mohammed,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/214271"&gt;@MoeE&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Transformation can be used to cut part of the string. Would you please share what's the source and target DB types? We'd like to confirm the behavior for you.&lt;/P&gt;
&lt;P&gt;BTW, (1) the fields are delimited by "|", is that correct? (2) It's used in Full Load only, or both Full Load and CDC.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;John.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 02:39:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471615#M12067</guid>
      <dc:creator>john_wang</dc:creator>
      <dc:date>2024-07-19T02:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Cutting out fields from a delimeted string</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471695#M12072</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/214271"&gt;@MoeE&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;If you only want to remove the second field, please try this statement:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;substr($C1, 1,instr($C1, '|')) ||&lt;BR /&gt;substr(substr($C1, instr($C1, '|')+1), instr(substr($C1, instr($C1, '|')+1), '|')+1)&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Desmond&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 10:35:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471695#M12072</guid>
      <dc:creator>DesmondWOO</dc:creator>
      <dc:date>2024-07-19T10:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Cutting out fields from a delimeted string</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471701#M12073</link>
      <description>&lt;P&gt;Replace(string,Chr(124)&amp;amp;TextBetween(string,'|','|'),'')&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 11:01:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471701#M12073</guid>
      <dc:creator>Padma123</dc:creator>
      <dc:date>2024-07-19T11:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cutting out fields from a delimeted string</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471713#M12075</link>
      <description>&lt;DIV id="bodyDisplay_2" class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;
&lt;DIV class="lia-message-body-content"&gt;
&lt;P&gt;Replace(string,Chr(124)&amp;amp;TextBetween(string,'|','|'),'')&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="AddMessageTags lia-message-tags lia-component-message-view-widget-tags"&gt;It appears to be a Qlik Sense command. For Replicate, it supports SQLite syntax only.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Desmond&lt;/DIV&gt;</description>
      <pubDate>Fri, 19 Jul 2024 11:26:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471713#M12075</guid>
      <dc:creator>DesmondWOO</dc:creator>
      <dc:date>2024-07-19T11:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cutting out fields from a delimeted string</title>
      <link>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471925#M12087</link>
      <description>&lt;P&gt;Hi Desmond,&lt;/P&gt;
&lt;P&gt;Thanks this is what I was looking for. Have a good day.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Mohammed&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 01:54:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Replicate/Cutting-out-fields-from-a-delimeted-string/m-p/2471925#M12087</guid>
      <dc:creator>MoeE</dc:creator>
      <dc:date>2024-07-22T01:54:00Z</dc:date>
    </item>
  </channel>
</rss>

