function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
surendra.cloudsurendra.cloud 

Data is coming from :@:@:Gurgaon:@:@:Gurgaon in this format

my data is coming from php data base in the following format i want to remove these characters how it can be done can anybody help me

surendra.cloudsurendra.cloud

my data is displaying in this format  :@@}}delhi @@}}hyderbad  how it can be resolved can any body help me

crop1645crop1645

Assuming you have some APEX code receiving this message, V26.0 introduced a new String remove() method

 

String s = ' :@@}}delhi @@}}hyderbad';

String sNew = s.remove(':@@}}');

sNew = sNew.remove('@@}}');