How can I do a string replace of a back slash.
Input Source String:
sSource = \"http://www.example.com\\/value\";
This will replace backslashes with forward slashes in the string:
source = source.replace('\\','/');