top of page

How to get last/first n char from a String using Apex in Salesforce

Writer's picture: Amol WaghAmol Wagh

Updated: Jul 8, 2024

.right() is used to get last n char from a String using Apex.

.left() is used to get first n char from a String using Apex.


Example:


String str = 'SalesforceCloudwaale';

String result = str.right(10); //returns Cloudwaale



String str = 'SalesforceCloudwaale';

String result = str.left(10); //returns Salesforce

0 comments

Recent Posts

See All
SIGN UP AND STAY UPDATED!

Thanks for submitting!

© 2019 by cloudwaale

bottom of page