/**
* @param string text 为传入的文本
* @param int num 为单行显示的字节长度
* @return array
*/
function textByteLength(text, num) {
let strLength = 0;
let rows = 1;
let str = 0;
let arr = [];
for (let j = 0; j < text.length; j++) {
// console.log(text.charCodeAt(j));
if (text.charCodeAt(j) > 255) {
// console.log('if');
strLength += 2;
if (strLength > rows * num) {
// console.log(3333);
// strLength++;
console.log(strLength);
arr.push(text.slice(str, j));
str = j;
rows++;
}
} else {
// console.log('else'
将字符串按长度截取成数组
最新推荐文章于 2025-03-30 12:41:36 发布