在JavaScript中反斜杠
我们需要编写一个JavaScript函数,该函数接受一个可能包含一些反斜杠的字符串。
并且该函数应返回一个新字符串,其中所有反斜杠均带有正斜杠。
因此,让我们为该函数编写代码-
示例
为此的代码将是-
const str = 'Th/s str/ng /conta/ns some/ forward slas/hes';
const invertSlashes = str => {
let res = '';
for(let i = 0; i < str.length; i++){
if(str[i] !== '/'){
res += str[i];
continue;
};
res += '\\';
};
return res;
};
console.log(invertSlashes(str));输出结果
控制台中的输出将为-
Th\s str\ng \conta\ns some\ forward slas\hes
热门推荐
10 春节后的祝福语简短
11 别人过大寿祝福语简短
12 特别的端午祝福语简短
13 中秋祝福语送朋友简短
14 领证幽默祝福语简短
15 学生宴祝福语简短的
16 祝福语简短古诗词
17 国庆求婚祝福语简短精辟
18 初升高祝福语家长简短