Home SALESFORCEAPEX Replace new line, space, commas characters using Apex Class

Replace new line, space, commas characters using Apex Class

To Replace the New Line Using Apex Class:
It depends on which character is used (that differs between operating systems). If you use these three (make sure the \r\n one is first) it should work:

string replaceNewLine = ”;
replaceNewLine = replaceNewLine.replace(‘\r\n’, ”);
replaceNewLine = replaceNewLine.replace(‘\n’, ”);
replaceNewLine = replaceNewLine.replace(‘\r’, ”);
System.Debug(‘replaceNewLine::’+replaceNewLine);

To Replace the Space Using Apex Class:
string replaceSpace = ”;
replaceSpace = replaceSpace.replace(‘ ‘, ”);
System.Debug(‘replaceSpace::’+replaceSpace);

To Replace the Commas Using Apex Class:
string replaceComma = ”;
replaceComma = replaceComma.replace(‘,’, ”);
System.Debug(‘replaceComma::’+replaceComma);

You may also like

Leave a Comment