在 JavaScript 中保持空格位置的同时反转字符串
问题
我们需要编写一个JavaScript函数,它接受一个可能包含一些空格的字符串。
我们的函数应该在内部反转字符串中存在的单词,而无需交换两个单独单词或空格的字符。
示例
以下是代码-
const str = 'this is normal string';
const reverseWordsWithin = (str = '') => {
let res = "";
for (let i =str.length- 1; i >= 0; i--){
if(str[i] != " "){
res += str[i];
};
if(str[res.length] == " "){
res += str[res.length];
};
};
return res;
};
console.log(reverseWordsWithin(str));输出结果gnir ts lamron sisiht
热门推荐
10 对患者生日祝福语简短
11 结婚祝福语简短装备
12 周岁祝福语学生文案简短
13 订婚领证祝福语简短精辟
14 导师获奖祝福语大全简短
15 新婚购房祝福语简短精辟
16 牛年祝福语简短的爱人
17 送芒果的祝福语简短
18 送给学长毕业祝福语简短