For Zoho Services only:


I'm actually part of something bigger at Ascent Business Solutions recognized as the top Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions offer support for smaller technical fixes and projects for larger developments, such as migrating to a ZohoCRM.  A team rather than a one-man-band is always available to ensure seamless progress and address any concerns. You'll find our competitive support rates with flexible, no-expiration bundles at http://ascentbusiness.co.uk/zoho-support-2.  For larger projects, check our bespoke pricing structure and receive dedicated support from our hands-on project consultants and developers at http://ascentbusiness.co.uk/crm-solutions/zoho-crm-packages-prices.

The team I manage specializes in coding API integrations between Zoho and third-party finance/commerce suites such as Xero, Shopify, WooCommerce, and eBay; to name but a few.  Our passion lies in creating innovative solutions where others have fallen short as well as working with new businesses, new sectors, and new ideas.  Our success is measured by the growth and ROI we deliver for clients, such as transforming a garden shed hobby into a 250k monthly turnover operation or generating a +60% return in just three days after launch through online payments and a streamlined e-commerce solution, replacing a paper-based system.

If you're looking for a partner who can help you drive growth and success, we'd love to work with you.  You can reach out to us on 0121 392 8140 (UK) or info@ascentbusiness.co.uk.  You can also visit our website at http://ascentbusiness.co.uk.

Zoho Deluge: Proper Case for Names

What?
This is an open article without any completion in mind; to set the proper case of a name, as in capitalize the first letter, lower case the rest but then with exceptions.

Why?
Some of the Zoho Apps are incredibly case-sensitive and consider some records containing people's names as duplicates, when actually they are the same entity but may have uppercased a letter in their name while the other entry does not...

This article is a start and adaptation of my previous article Convert to Proper Case in T-SQL which I had previously used for the migration of a HR system. This is intended to work using Zoho Deluge.

How?
There are a number of combinations that I won't have thought of but the below code sufficed for my current task, common English and some European names:

copyraw
//
// set first and last name
v_FirstName = "BILLIE-JO";
v_LastName = "MCDONALD-O'LEARY ii OF CAMBRIDGE-worcester-OXFORD";
//
// let's deal with double or triple barrelled first names
v_FirstName = v_FirstName.replaceAll("-", " :|JOEL|: ", true).proper();
v_FirstName = v_FirstName.replaceAll(" :|JOEL|: ", "-", true);
//
// Names starting with Mc, O', D', I'
l_ExceptionPrefixes = {"Mc", "O'", "D'", "I'"};
//
// deal with double barrelled surnames
l_FormattedLastName = List();
l_LastNameParts = v_LastName.toList("-");
for each v_LastNamePart in l_LastNameParts
{
	//
	// default to proper
	v_LastNamePart = v_LastNamePart.proper();
	//
	// if exception prefixes
	for each v_Prefix in l_ExceptionPrefixes
	{
		if(v_LastNamePart.indexOf(v_Prefix)==0)
		{
			v_LastNamePart = v_LastNamePart.replaceFirst(v_Prefix,v_Prefix + " :|JOEL|: ", true).proper();
			v_LastNamePart = v_LastNamePart.replaceAll(" :|joel|: ", "", true);
		}
	}
	//
	// add back to our hyphen separated list
	l_FormattedLastName.add(v_LastNamePart);
}
v_LastName = l_FormattedLastName.toString("-");
//
// affix exceptions
l_Exceptions = {" II", " III", " the ", " de ", " of ", " van "};
for each v_Exception in l_Exceptions
{
	v_LastName = v_LastName.replaceAllIgnoreCase(v_Exception, v_Exception, false);
}
//
// join all together
v_FullName = trim(v_FirstName + " " + v_LastName);
info v_FullName;
//
// yields: Billie-Jo McDonald-O'Leary II of Cambridge-Worcester-Oxford
  1.  // 
  2.  // set first and last name 
  3.  v_FirstName = "BILLIE-JO"
  4.  v_LastName = "MCDONALD-O'LEARY ii OF CAMBRIDGE-worcester-OXFORD"
  5.  // 
  6.  // let's deal with double or triple barrelled first names 
  7.  v_FirstName = v_FirstName.replaceAll("-", :|JOEL|: ", true).proper()
  8.  v_FirstName = v_FirstName.replaceAll(:|JOEL|: ", "-", true)
  9.  // 
  10.  // Names starting with Mc, O', D', I' 
  11.  l_ExceptionPrefixes = {"Mc", "O'", "D'", "I'"}
  12.  // 
  13.  // deal with double barrelled surnames 
  14.  l_FormattedLastName = List()
  15.  l_LastNameParts = v_LastName.toList("-")
  16.  for each v_LastNamePart in l_LastNameParts 
  17.  { 
  18.      // 
  19.      // default to proper 
  20.      v_LastNamePart = v_LastNamePart.proper()
  21.      // 
  22.      // if exception prefixes 
  23.      for each v_Prefix in l_ExceptionPrefixes 
  24.      { 
  25.          if(v_LastNamePart.indexOf(v_Prefix)==0) 
  26.          { 
  27.              v_LastNamePart = v_LastNamePart.replaceFirst(v_Prefix,v_Prefix + :|JOEL|: ", true).proper()
  28.              v_LastNamePart = v_LastNamePart.replaceAll(:|joel|: ", "", true)
  29.          } 
  30.      } 
  31.      // 
  32.      // add back to our hyphen separated list 
  33.      l_FormattedLastName.add(v_LastNamePart)
  34.  } 
  35.  v_LastName = l_FormattedLastName.toString("-")
  36.  // 
  37.  // affix exceptions 
  38.  l_Exceptions = {" II", " III", " the ", " de ", " of ", " van "}
  39.  for each v_Exception in l_Exceptions 
  40.  { 
  41.      v_LastName = v_LastName.replaceAllIgnoreCase(v_Exception, v_Exception, false)
  42.  } 
  43.  // 
  44.  // join all together 
  45.  v_FullName = trim(v_FirstName + " " + v_LastName)
  46.  info v_FullName; 
  47.  // 
  48.  // yields: Billie-Jo McDonald-O'Leary II of Cambridge-Worcester-Oxford 

Caveat(s):
  • This solution does not cater for the Mac prefix; because "Mackayla", "Macie", "Maci", "Macala", "Mack", "Macoy", "Macey", "Macedonia"...

Source(s):
Category: Zoho :: Article: 855

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com

Related Articles

Joes Revolver Map

Accreditation

Badge - Certified Zoho Creator Associate
Badge - Certified Zoho Creator Associate

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF
© 2024 Joel Lipman .com. All Rights Reserved.