获取字符串的长度
Posted icyyyy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取字符串的长度相关的知识,希望对你有一定的参考价值。
描述:如果第二个参数 bUnicode255For1 === true,则所有字符长度为 1。否则如果字符 Unicode 编码 > 255 则长度为 2
示例1
输入:\'hello world, 牛客\', false
输出:17
1 function strLength(s, bUnicode255For1) { 2 if(bUnicode255For1 ===true){ 3 return s.length 4 }else{ 5 let len=s.length 6 for(let i=0;i<len;i++){ 7 if(s.charCodeAt(i)>255){ 8 len++ 9 } 10 } 11 return len 12 } 13 }
以上是关于获取字符串的长度的主要内容,如果未能解决你的问题,请参考以下文章