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
IZavalunIZavalun 

Carriage return escape syntax

I am trying to  escape Carriage return character, but it doesn't work for me.

Please tell me what I am doing wrong here?

 

==============================================

 

_tmp_street=qrdr.records[i].BillingStreet;
_street=_tmp_street.replace(/([\'\&\|\!\(\)\{\}\[\]\^~\:\\\+\-])/g, " ");
alert(_street);