SaasGuru Logo

Kickstart your career with the World's First Salesforce & AI Programs by an IIT - Explore Courses 🎉

Kickstart your career with the World's First Salesforce & AI Programs by an IIT - Explore Courses 🎉
What is Apex String Class in Salesforce?

What is Apex String Class in Salesforce?

If you’ve ever wondered about the intricacies of Salesforce’s Apex programming language, you’re in the right place. We aim to ensure that by the end of this guide, you’ll have a solid grasp on some of Apex’s most crucial concepts.

In this blog, you will learn:

  • What makes Apex the powerhouse of Salesforce.
  • The role, significance, and functionalities of the Apex String Class in Salesforce.
  • The essentials of access modifiers and how they influence the visibility of your Apex code.
  • A step-by-step walkthrough to get you started with creating an Apex class in Salesforce.
  • The reasons behind the growing preference for Apex among Salesforce developers.

Let’s get started!

What is Apex?

Apex, an object-oriented, strongly typed language, facilitates developers to perform flow and transactional instructions on Salesforce’s servers. It’s a language with Java-like syntax and acts as a backbone for business logic in Salesforce applications.

Apex plays a pivotal role in Salesforce by empowering developers to create complex business processes that interact with data in Salesforce orgs. From creating custom logic for Visualforce pages to writing controllers for Lightning components, Apex is indispensable in Salesforce.

salesforce platform developer 1 bootcamp

What is Apex String Class in Salesforce?

The Apex String Class in Salesforce is an integral aspect of Apex, Salesforce’s proprietary programming language. As a strongly-typed, object-oriented dialect, Apex enables developers to craft potent business solutions and engage with Salesforce’s data. The String Class in Apex, specifically, offers a collection of methods and functionalities that enable effective and flexible manipulation of text, a.k.a. string data.

In programming terms, a string represents a series of characters, which could range from a single word to an entire paragraph. The String Class in Apex provides tools to manage and operate on these sequences.

Also Read – Understanding the String Class in Salesforce [With Examples]

List of Apex String Methods Salesforce

Apex String Class in Salesforce is replete with methods that empower developers to execute an array of operations on strings. These methods range from simple character replacement to complex substring extractions. Let’s delve into some of the key methods:

  1. contains(substring)

    This method checks if the string contains a specified substring. It confirms the presence of a substring by returning true, or false if not found. This comes in handy when verifying if a specific word or character sequence exists within a string.
  2. equals(anotherString)

    This method compares the string with another specified string. This method is case-sensitive and gives a true value if the strings match exactly, else it returns false. This method is typically used for verifying if two strings are identical.
  3. equalsIgnoreCase(anotherString)

    Similar to equals(), this method also compares two strings but it ignores the case during the comparison. It’s useful when the case isn’t a factor in your string comparison.
  4. length()

    This function provides the character count present in the string. It’s frequently used when the size of the input string needs to be known, for instance, validating if a user’s input meets a minimum length requirement.
  5. startsWith(prefix)

    This function determines if the string commences with a given prefix. It’s useful for sorting or categorizing strings based on their initial characters.
  6. endsWith(suffix)

    This function validates if the string concludes with a certain suffix, useful for string categorization based on ending characters. 
  7. substring(startIndex)

    This method offers a new string starting at the designated startIndex and continuing to the string’s end. This is handy for extracting parts of a string from a certain point onwards.
  8. substring(startIndex, endIndex)

    This method yields a new string from startIndex to endIndex, not inclusive of the endIndex. This enables you to extract specific portions of a string, providing a way to partition strings based on index positions.
  9. toLowerCase()

    This method converts all characters in the string to lowercase. This comes in handy when you’re normalizing user input for comparison or storage.
  10. toUpperCase()

    This method transforms all characters in the string to their uppercase counterparts. Like toLowerCase(), this is useful for normalizing input.
  11. trim()

    This function eradicates leading and trailing spaces from the string. This is particularly useful in cleaning up user input where extra spaces might have been added accidentally.
  12. replaceAll(regExp, replacement)

    This method replaces every match of the regular expression (regExp) in the string with the replacement string. This is especially useful when you need to replace patterns rather than specific characters or strings.
  13. replace(oldChar, newChar)

    This function replaces every occurrence of the old character in the string with the new one. It’s useful for tasks such as replacing placeholders with actual values in template strings.
  14. split(regExp)

    This method divides the string into a list of substrings based on the matches of the input regular expression. This is typically used to divide a string into constituent parts, such as splitting a sentence into words for language processing tasks.
  15. indexOf(substring)

    This function returns the position of the first occurrence of the given substring in the string, which is useful when pinpointing the location of a specific substring.

Collectively, these methods of the Apex String Class in Salesforce provide a robust toolset for string manipulation, enabling developers to craft intricate solutions for various business scenarios.

What are access modifiers in Salesforce?

Access modifiers in Salesforce are keywords in Apex that control the visibility of a class and its members (methods and variables). they play a pivotal role in deciding the accessibility of classes and their members within your codebase.

Types of access modifiers in Salesforce

  1. Public: A class or class member marked as public can be accessed from anywhere within the application, whether it’s inside or outside the defining class or in a different namespace. However, if the Apex code is deployed as a managed package, the public members are only accessible within the application and not accessible outside of the package.
  2. Private: A class or member marked as private can be accessed exclusively from within its defining class. It remains unattainable from class extensions, subclasses, or any external class. Private becomes the default access level when no access modifier is designated.
  3. Global: A global class or class member is accessible across the entire application and from any other application, including those installed as managed packages. This modifier is used when the class needs to be available to the Salesforce platform and external APIs. A global class or method must also be declared as webservice if it needs to be accessible through a web service.
  4. Protected: This access modifier is only used with variables in a class defined in a managed package. Protected variables are accessible within the same class and subclasses in the same package but not accessible outside of the package. This is a way to hide certain information from the code that uses the managed package.

Using these access modifiers, Salesforce developers can effectively control the accessibility and visibility of their Apex code and ensure the encapsulation and security of data and methods. This allows them to develop cleaner, safer, and more maintainable code.

How to create an Apex class in Salesforce?

Creating an Apex class in Salesforce is a straightforward process. Here’s the process to follow: 

  1. Start with accessing the Developer Console

    From your Salesforce home screen, click on your profile located in the upper right-hand corner. A drop-down menu will appear. Click on Developer Console.
  2. To create a new Apex Class

    Navigate to File -> New -> Apex Class in the Developer Console. 
  3. Name the Class

    Upon doing so, a dialog box will prompt for the name of the new class. Enter a name that is descriptive and adheres to naming conventions. Click OK when done.
  4. Write the Class

    After clicking OK, a new window will open with a template for your class. It’ll look something like this:

public class YourClassName {

}

Within this class, you can define variables, methods, and constructors as required. Here’s a basic example:

public class YourClassName {

    // Define a variable

    public String myString;

    // Define a method

    public void displayString() {

        System.debug(‘My String: ‘ + myString);

    }

}

In this example, myString is a variable, and displayString() is a method that prints the value of myString in the debug logs.

  1. Save the Class

    Once you have written the class, save it by either clicking on File -> Save, using the CTRL+S shortcut, or clicking the Save icon.
  2. Test the Class

    Always make sure to write and run tests for your Apex classes to ensure they work as expected. Salesforce requires at least 75% code coverage in order to deploy Apex to a production environment.

That’s it! You have now created an Apex class in Salesforce. Remember that it’s best practice to add comments to your code and adhere to naming conventions for readability and maintenance.

Also Read – Apex Best Practices in Salesforce

Why choose Apex as a Language?

There are several reasons why developers choose Apex as a language, especially when working in Salesforce environments.

  1. Tailored for Salesforce

    Apex is specifically designed for Salesforce and tightly integrated with its database and runtime environment. Its capability to develop applications and business logic makes Apex an exemplary choice for the Salesforce platform.
  2. Powerful and Flexible

    Apex offers object-oriented programming capabilities, including classes, interfaces, and inheritance, making it a powerful and flexible tool for developers. It also supports collections such as Lists, Maps, and Sets, which offer a range of ways to manage data.
  3. Transactional Control

    Apex supports database transactions and allows for complete control over the commit and rollback of transactions. Its utility shines when handling intricate data manipulations.
  4. Aiding Testing and Debugging

     Apex inherently provides features to build and execute unit tests. It also provides robust debugging support through debug logs, developer console, and system methods like System.debug().
  5. Tight Security

    Apex runs in a multitenant environment, ensuring strict data security and visibility controls. It enforces user permissions and sharing rules that have been defined in Salesforce, making it a secure option for enterprise applications.
  6. Easy Integration

    Apex can easily integrate with external systems using Web services, email services, HTTP callouts, etc. It’s also used to create custom web services, enabling seamless interaction between Salesforce and other systems.
  7. Event-driven Programming

    Apex provides support for triggers, allowing developers to execute custom business logic before or after database events like insert, update, delete, and merge events.
  8. Batch Processing

    Apex supports batch processing and allows for the handling of large data sets that exceed governor limits. This becomes essential in enterprise situations that require handling vast quantities of data.

Apex’s capabilities, coupled with its seamless integration with the Salesforce environment, make it a top choice for developers working on Salesforce-based applications. 

Become a Salesforce Certified Professional

Summing Up

Throughout this blog, we’ve delved deep into the core of Salesforce’s programming language – Apex, understanding its strength in managing string operations through the Apex String Class, and usage of access modifiers, learning to create an Apex class, and appreciating why Apex stands as a distinguished choice for developers in the Salesforce ecosystem.

As we draw to a close, it’s important to note that continuous learning and practical application are key to mastering Salesforce development. Therefore, we recommend you enrol for Salesforce Platform Developer 1 Training by saasguru. 

This comprehensive training is designed to give you hands-on experience with Salesforce development, including detailed modules on Apex. It also includes a Capstone Project, enabling you to put your newly learned skills to test in real-world scenarios. 

Also, join our saasguru community on Slack to connect with other Salesforce enthusiasts, discuss ideas, ask questions, and share your achievements.

Table of Contents

Subscribe & Get Closer to Your Salesforce Dream Career!

Get tips from accomplished Salesforce professionals delivered directly to your inbox.

Looking for Career Upgrade?

Book a free counselling session with our Course Advisor.

By providing your contact details, you agree to our Terms of use & Privacy Policy

Unlock Your AI -Powered Assistant

Gain Exclusive Access to Your Salesforce Copilot

Related Articles

New courses launched by IITs in 2024

Explore IITs’ new 2024 courses in Salesforce, AI, Data Science, Robotics & more. Advance your career with industry-aligned programs!

Salesforce Announces Dreamforce 2025: Dates and Key Details

Discover the latest updates on Dreamforce 2025, including dates, location, and what to expect from Salesforce’s premier event. Read now!

Salesforce Named a Leader in 2024 for Multichannel Marketing Hubs

Salesforce recognized as a Leader in 2024 Gartner Magic Quadrant for Multichannel Marketing Hubs, driving personalized, cross-channel engagement.