Open guyuezhai opened 4 years ago
function getmaxlen(str){ if(str){ let matchStr=str.match(/(\w)\1*/g); let lenArr=matchStr.map(item=>item.length); let maxLen=Math.max(...lenArr); return matchStr.reduce((res,cur)=>{ if(cur.length===maxLen){ res[cur]=maxLen } return res },{}) } return {} } getmaxlen('abbkejsbcccwqaa') // => {ccc: 3}