Home SALESFORCEAPEX How to Replace String Values in Visualforce Page

How to Replace String Values in Visualforce Page

SUBSTITUTE – new text for old text in a text string.

Example:

{!SUBSTITUTE(Lead.Company, " ", "")} //Remove the Space in Lead Company
{!SUBSTITUTE(Account.Name, "", "")} //Remove dot value in Account Nmae
<apex:outputText value="{!
    SUBSTITUTE(
        SUBSTITUTE(Account.Description, '[', '<sup>'),
        ']', '</sup>'
    )
}" escape="false"/>

Replace String function using Apex Class in Salesforce

String str = ‘TheBlogReaders’;
Str = str.replace(‘Blog’,’Salesforce’);
System.debug(‘Output::’+ str);
Output:
23:18:23:002 USER_DEBUG [3]|DEBUG|Output::TheSalesforceReaders

You may also like

Leave a Comment