function strLength(s, bUnicode255For1) {
            if(bUnicode255For1){return s.length}
            let count  =0;
            s.split('').forEach(item=>count+=item.charCodeAt()>255?2:1);
            return count
        }