Answers for "remove backslash from string"

0

remove backslash from string

str = 'hai how are\ you?';
str = str.replace("\\", "");
console.log(str);

output: "hai how are you?"
Posted by: Guest on June-13-2021

Code answers related to "remove backslash from string"

Browse Popular Code Answers by Language