La risposta di Lauri Oherd funziona bene per la maggior parte delle stringhe viste in natura, ma fallirà se la stringa contiene caratteri solitari nell'intervallo di coppie surrogate, da 0xD800 a 0xDFFF. Per esempio
byteCount(String.fromCharCode(55555))
Questa funzione più lunga dovrebbe gestire tutte le stringhe:
function bytes (str) {
var bytes=0, len=str.length, codePoint, next, i;
for (i=0; i < len; i++) {
codePoint = str.charCodeAt(i);
if (codePoint >= 0xD800 && codePoint < 0xE000) {
if (codePoint < 0xDC00 && i + 1 < len) {
next = str.charCodeAt(i + 1);
if (next >= 0xDC00 && next < 0xE000) {
bytes += 4;
i++;
continue;
}
}
}
bytes += (codePoint < 0x80 ? 1 : (codePoint < 0x800 ? 2 : 3));
}
return bytes;
}
Per esempio
bytes(String.fromCharCode(55555))
Calcolerà correttamente la dimensione per le stringhe contenenti coppie surrogate:
bytes(String.fromCharCode(55555, 57000))
I risultati possono essere confrontati con la funzione incorporata di Node Buffer.byteLength
:
Buffer.byteLength(String.fromCharCode(55555), 'utf8')
Buffer.byteLength(String.fromCharCode(55555, 57000), 'utf8')