Removing the last character from a String Using Salesforce Apex Class We can easyily remove the last character from a string by using the Substring() method using Apex Class For…
APEXSALESFORCESalesforce Customization
Removing the last character from a String Using Salesforce Apex Class We can easyily remove the last character from a string by using the Substring() method using Apex Class For…
Remove the Space from String using Apex Class String str = ‘ TheBlogReaders.com Salesforce.com, PHP, MySQL, Javascript, Ajax, Htacces FREE Blog ‘; str = str.trim(); str = str.replaceAll(‘(\\s+)’, ‘ ‘);…
US Phone Format Using PHP Function Below PHP Example code will turn the poorly formatted US phone numbers entered by Customer and format with following formats: (XXX) XXX-XXX or XXX-XXX-XXXX…
How to convert from 18 Digit Salesforce ID to 15 Digit ID Using Apex Class Its possible to convert from 18 Digit Salesforce ID to 15 Digit ID Using String…