3.3K
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
String Function – https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_methods_system_string.htm