<?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 telephone number conversion in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/telephone-number-conversion/m-p/2253748#M36989</link>
    <description>in our system user can input various telephone numbers in free text.
&lt;BR /&gt;I'd like to create a job, which iterates all numbers and applies a set of easy to maintain rules for cleaning/replacement,
&lt;BR /&gt;to get as many as possible number into a fixed standard format in the output.
&lt;BR /&gt;Are there any components that help me do so?</description>
    <pubDate>Sat, 16 Nov 2024 13:02:00 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2024-11-16T13:02:00Z</dc:date>
    <item>
      <title>telephone number conversion</title>
      <link>https://community.qlik.com/t5/Talend-Studio/telephone-number-conversion/m-p/2253748#M36989</link>
      <description>in our system user can input various telephone numbers in free text.
&lt;BR /&gt;I'd like to create a job, which iterates all numbers and applies a set of easy to maintain rules for cleaning/replacement,
&lt;BR /&gt;to get as many as possible number into a fixed standard format in the output.
&lt;BR /&gt;Are there any components that help me do so?</description>
      <pubDate>Sat, 16 Nov 2024 13:02:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/telephone-number-conversion/m-p/2253748#M36989</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2024-11-16T13:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: telephone number conversion</title>
      <link>https://community.qlik.com/t5/Talend-Studio/telephone-number-conversion/m-p/2253749#M36990</link>
      <description>If you take a look at the TOP (talend open profiler) regexes there are many dealing with validating telephone numbers from around the world. you can take these regexes and embed them wherever you need to validate and clean telephone numbers</description>
      <pubDate>Thu, 17 Mar 2011 19:45:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/telephone-number-conversion/m-p/2253749#M36990</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-17T19:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: telephone number conversion</title>
      <link>https://community.qlik.com/t5/Talend-Studio/telephone-number-conversion/m-p/2253750#M36991</link>
      <description>I put up a blog post on integrating Google's phone number handling code (libphonenumber). If you add this JAR to Talend via tLoadLibrary, you'll get phone number format support for 228 countries and regions. 
&lt;A href="http://bekwam.blogspot.com/2011/03/formatting-phone-numbers-in-talend-open.html" rel="nofollow noopener noreferrer"&gt;http://bekwam.blogspot.com/2011/03/formatting-phone-numbers-in-talend-open.html&lt;/A&gt; 
&lt;BR /&gt;The library can be found here: 
&lt;A href="http://code.google.com/p/libphonenumber/downloads/list" rel="nofollow noopener noreferrer"&gt;http://code.google.com/p/libphonenumber/downloads/list&lt;/A&gt;. I built the 3.0 jar. 
&lt;BR /&gt;The integration uses a tJavaRow to create some PhoneNumber objects parsed from strings created by a tRowGenerator. These PhoneNumber objects can be outputted in parts (country code, etc.) or using some standard phone number formats. 
&lt;BR /&gt; 
&lt;PRE&gt;	PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance();&lt;BR /&gt;	&lt;BR /&gt;	PhoneNumber col1_pn = phoneUtil.parse(input_row.usPhoneCol1, "US");&lt;BR /&gt;	PhoneNumber col2_pn = phoneUtil.parse(input_row.usPhoneCol2, "US");&lt;BR /&gt;	PhoneNumber col3_pn = phoneUtil.parse(input_row.usPhoneCol3, "US");&lt;BR /&gt;	&lt;BR /&gt;	output_row.usPhoneCol1 = phoneUtil.format(col1_pn, PhoneNumberFormat.NATIONAL);&lt;BR /&gt;	output_row.usPhoneCol2 = phoneUtil.format(col2_pn, PhoneNumberFormat.NATIONAL);&lt;BR /&gt;	output_row.usPhoneCol3 = phoneUtil.format(col3_pn, PhoneNumberFormat.NATIONAL);&lt;/PRE&gt; 
&lt;BR /&gt;usPhoneCol1 is "(301) 555-5555", usPhoneCol2 is "3015555555", and usPhoneCol3 is "301.555.5555". All three columns format() to "(301) 555-5555". 
&lt;BR /&gt;-Carl</description>
      <pubDate>Thu, 17 Mar 2011 23:51:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/telephone-number-conversion/m-p/2253750#M36991</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-17T23:51:18Z</dc:date>
    </item>
  </channel>
</rss>

