freeCodeCamp:Search and Replace

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freeCodeCamp:Search and Replace相关的知识,希望对你有一定的参考价值。

使用给定的参数对句子执行一次查找和替换,然后返回新句子。

第一个参数是将要对其执行查找和替换的句子。

第二个参数是将被替换掉的单词(替换前的单词)。

第三个参数用于替换第二个参数(替换后的单词)。

注意:替换时保持原单词的大小写。例如,如果你想用单词 "dog" 替换单词 "Book" ,你应该替换成 "Dog"。

function myReplace(str, before, after) {
  var newStr = "";
  if (before[0] === before[0].toUpperCase()) {
    after = after[0].toUpperCase() + after.slice(1);
  }
  newStr = str.replace(before,after);
  
  return newStr;
}

myReplace("A quick brown fox jumped over the lazy dog", "jumped", "leaped");

 

以上是关于freeCodeCamp:Search and Replace的主要内容,如果未能解决你的问题,请参考以下文章

Create and format Word documents using R software and Reporters package

Topologies on product spaces of $mathbb{R}$ and their relationships

CF1109A Sasha and a Bit of Relax

0323C - Cupboard and Balloons

divide and conquer - 最大连续子序列 - py

R 作业代写代编代码Thinking and Reasoning