<?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: Split Address field in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333559#M102331</link>
    <description>&lt;P&gt;Hi Shong, &lt;/P&gt;&lt;P&gt;You can take below as an example&lt;/P&gt;&lt;P&gt;addr1-  Flat Number 1901A, Bhagirathi Apartments(40 letters)&lt;/P&gt;&lt;P&gt;addr2-  Sector 62, Noida, India(23 letters)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;after mapping&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;addr1- Flat Number 1901A, Bhagirathi&lt;/P&gt;&lt;P&gt;addr2- Apartments Sector 62, Noida, India(Apartments moved because last word Apartments was not completing in 35 letters)&lt;/P&gt;</description>
    <pubDate>Tue, 06 Apr 2021 15:37:17 GMT</pubDate>
    <dc:creator>mani1304</dc:creator>
    <dc:date>2021-04-06T15:37:17Z</dc:date>
    <item>
      <title>Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333553#M102325</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;P&gt;In my requirement, I have 2 fields, address_1, address_2 and each has length 35, so if length increases 35, address will spill to address_2, but here we need full word, means if address_1 is having incomplete word then it should also move to address_2 field, e.g. if address_1's last word is not able to take all the words from Washington, then it should move the whole last word to address_2, hope this explains my requirement, can someone please tell about it.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:22:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333553#M102325</guid>
      <dc:creator>mani1304</dc:creator>
      <dc:date>2024-11-16T00:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333554#M102326</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;First of all, you need to check the length of address and filter the records that whose length exceeds 35, and then split the field to multiple parts.  We usually split the text fields using tExtractDelimitedField components or hard code based on the specific requirements, can you show us some example data and what are expected output? So that we can give you more details. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 02:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333554#M102326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-02T02:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333555#M102327</link>
      <description>&lt;P&gt;Thanks Shong, I did it in tmap through creating variables, In first variable, splitted the record having more than 35 length, then took the record till lastIndexOf(" ") and combined the rest with add2 in third variable, Is there any other way for that?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 19:24:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333555#M102327</guid>
      <dc:creator>mani1304</dc:creator>
      <dc:date>2021-04-04T19:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333556#M102328</link>
      <description>&lt;P&gt;Mani, using regular expression and checking for a non alphanumeric character in 35th position might be a better bet. If the 36th position has a alphanumeric then traverse back till you hit a non-alphanumeric and push the rest to the second line.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 21:43:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333556#M102328</guid>
      <dc:creator>tnewbie</dc:creator>
      <dc:date>2021-04-05T21:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333557#M102329</link>
      <description>&lt;P&gt;Thanks tnewbie, I was also thinking for using RegEx but may be I was doing some mistake and wasn't able to achieve it so took this method; if you don't mind can you provide some line of code for that.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 06:07:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333557#M102329</guid>
      <dc:creator>mani1304</dc:creator>
      <dc:date>2021-04-06T06:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333558#M102330</link>
      <description>&lt;P&gt;Would you mind sharing some example data and what are expected output? &lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 08:06:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333558#M102330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-06T08:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333559#M102331</link>
      <description>&lt;P&gt;Hi Shong, &lt;/P&gt;&lt;P&gt;You can take below as an example&lt;/P&gt;&lt;P&gt;addr1-  Flat Number 1901A, Bhagirathi Apartments(40 letters)&lt;/P&gt;&lt;P&gt;addr2-  Sector 62, Noida, India(23 letters)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;after mapping&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;addr1- Flat Number 1901A, Bhagirathi&lt;/P&gt;&lt;P&gt;addr2- Apartments Sector 62, Noida, India(Apartments moved because last word Apartments was not completing in 35 letters)&lt;/P&gt;</description>
      <pubDate>Tue, 06 Apr 2021 15:37:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333559#M102331</guid>
      <dc:creator>mani1304</dc:creator>
      <dc:date>2021-04-06T15:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Split Address field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333560#M102332</link>
      <description>&lt;P&gt;@Manish Mishra​&amp;nbsp;, Yes, if the length exceeds 35 and you always want the rest of characters starting with the last blank space are moved to the second address, the way you are doing is the best and quick. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 03:40:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-Address-field/m-p/2333560#M102332</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-07T03:40:05Z</dc:date>
    </item>
  </channel>
</rss>

