通过递归JavaScript构造字符串
我们需要编写一个递归函数,例如pickString,它接受一个包含字母和数字的组合的字符串,并返回一个仅包含字母的新字符串。
例如,
If the string is ‘dis122344as65t34er’, The output will be: ‘disaster’
因此,让我们为该递归函数编写代码-
示例
const str = 'ex3454am65p43le';
const pickString = (str, len = 0, res = '') => {
if(len < str.length){
const char = parseInt(str[len], 10) ? '' : str[len];
return pickString(str, len+1, res+char);
};
return res;
};
console.log(pickString(str));
console.log(pickString('23123ca43n y43ou54 6do884 i43t'));
console.log(pickString('h432e54l43l65646o'));
console.log(pickString('t543h54is 54i5s 54t43he l543as53t
54ex87a455m54p45le'));输出结果
控制台中的输出将为-
example can you do it hello this is the last example
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短