Method description:
Get the byte length of the string.
The difference between this function and String.prototype.length is that the latter returns the number of characters in the string.
Grammar:
Buffer.byteLength(string, [encoding])
Receive parameters:
string character creation
encoding String encoding, the default is ‘utf8′
Example:
str = 'u00bd u00bc = u00be';
console.log(str ": " str.length " characters, "
Buffer.byteLength(str, 'utf8') " bytes");
// ½ ¼ = ¾: 9 characters, 12 bytes
Source code:
Buffer.byteLength = function(str, enc) {
var ret;
str = str '';
switch (enc) {
case 'ascii':
case 'binary':
case 'raw':
ret = str.length;
break;
case 'ucs2':
case 'ucs-2':
case 'utf16le':
case 'utf-16le':
ret = str.length * 2;
break;
case 'hex':
ret = str.length >>> 1;
break;
Default:
ret = internal.byteLength(str, enc);
}
Return ret;
};
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn