I tried to use this formula, but it didn't work.
1- title = string\replace(title, "", "-");
2 - title = string\replace(title, '\', '-');
3- title = string\replace(title, "\\\\/", "-");
How i can replace \ Backslash with -
1- title = string\replace(title, "", "-");
2 - title = string\replace(title, '\', '-');
3- title = string\replace(title, "\\\\/", "-");
How i can replace \ Backslash with -
Comment