以特定字符开头的反向单词-JavaScript
我们需要编写一个JavaScript函数,该函数接受一个句子字符串和一个字符,并且该函数应反转字符串中以该特定字符开头的所有单词。
例如:如果字符串是-
const str = 'hello world, how are you';
以特定字符'h'开头-
然后输出字符串应该是-
const output = 'olleh world, woh are you';
这意味着,我们已经颠倒了以“h”开头的单词,即Hello和How。
示例
以下是代码-
const str = 'hello world, how are you';
const reverseStartingWith = (str, char) => {
const strArr = str.split(' ');
return strArr.reduce((acc, val) => {
if(val[0] !== char){
acc.push(val);
return acc;
};
acc.push(val.split('').reverse().join(''));
return acc;
}, []).join(' ');
};
console.log(reverseStartingWith(str, 'h'));输出结果
以下是控制台中的输出-
olleh world, woh are you
热门推荐
3 祝福语简短的微信
10 幼儿祝福语大全简短贺卡
11 感谢教官文案祝福语简短
12 鼠年同事祝福语简短创意
13 元旦祝福语 简短独特群发
14 妈咪跟我生日祝福语简短
15 给儿子新婚祝福语简短
16 伴娘祝福语长文案简短
17 恭喜高考完祝福语简短
18 生日祝福语送老公简短