JavaScrip t将单词的字母按大小写间隔写出

Description:

Write a function 'toWeirdCase' ('weirdcase' in Ruby) that accepts a string, and returns the same string with all even indexed characters in each word upper cased, and all odd indexed characters in each word lower cased. The indexing just explained is zero based, so the zero-ith index is even, therefore that character should be upper cased.

The passed in string will only consist of alphabetical characters and spaces(' '). Spaces will only be present if there are multiple words. Words will be separated by a single space(' ').

Examples:
console.log(toWeirdCase( "String" ));   // "StRiNg"
console.log(toWeirdCase( "Weird string case" ));    //"WeIrD StRiNg CaSe"
my answer:
function toWeirdCase(arrr){
  var arr= arrr.toLowerCase().split(' ');
  var arrnew =[];
  for(var j=0;j<arr.length;j++){
  var str=arr[j];
  var newStr = '';
  for(var i=0;i<str.length;i+=2){ 
     if(typeof(str[i+1])!='undefined'){  
         newStr += str[i].toUpperCase()+str[i+1].toLowerCase();
     }else{
         newStr += str[i].toUpperCase();
     }
  }
  arrnew.push(newStr);
}
return arrnew.join(' ') ;
}

console.log(toWeirdCase("Weird string case"));  // WeIrD StRiNg CaSe
console.log(toWeirdCase( "String" ));  // StRiNg
other answer:用map()
array.map(function(currentValue,index,arr), thisValue)

currentValue(必须)当前元素的值
index (可选)     当前元素的索引值
arr (可选)       当前元素属于的数组对象
thisValue(可选)  对象作为该执行回调时使用,传递给函数,用作 "this" 的值。
                  如果省略了 thisValue ,"this" 的值为 "undefined"
  • map()方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。
  • map() 方法按照原始数组元素顺序依次处理元素。
  • map() 不会对空数组进行检测。
  • map() 不会改变原始数组。
function toWeirdCase(string){
  return string.split(' ').map(function(word){
    return word.split('').map(function(letter, index){
      return index % 2 == 0 ? letter.toUpperCase() : letter.toLowerCase()
    }).join('');
  }).join(' ');
}

或者如下表示

function toWeirdCaseCharacter(letter, index){
  return index % 2 ? letter.toLowerCase() : letter.toUpperCase();
}
function toWeirdCaseWord(word){
  return word.split("").map(toWeirdCaseCharacter).join("");
}
function toWeirdCase(string){
  return string.split(" ").map(toWeirdCaseWord).join(" ");
}

转载于:https://www.cnblogs.com/kid2333/p/7458705.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值