码迷,mamicode.com
首页 > 其他好文 > 详细

Search and Replace

时间:2016-12-16 19:41:00      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:ice   lazy   function   over   cas   style   方法   test   pre   

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

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

另外一种方法

function myReplace(str, before, after) {
  //return str;
  var re = /^[A-Z]/;
  if(re.test(before.charAt(0))){
    after = after.charAt(0).toUpperCase() + after.slice(1);
  }
  str = str.replace(before,after);
  return str;
}

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

 

Search and Replace

标签:ice   lazy   function   over   cas   style   方法   test   pre   

原文地址:http://www.cnblogs.com/mengruying/p/6187974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!