How can I do a string replace of a back slash.
Input Source String:
sSource = \"http://www.example.com\\/value\";
sSource = StringUtils.replace(sSource, "\\/", "/")
you have to do
sSource.replaceAll("\\\\/", "/");
because the backshlash should be escaped twice one for string in source one in regular expression