2017-02-08 00:56:07 +01:00
|
|
|
# String Decoder
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2017-01-23 04:16:21 +01:00
|
|
|
<!--introduced_in=v0.10.0-->
|
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 2 - Stable
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2016-05-23 23:30:48 +02:00
|
|
|
The `string_decoder` module provides an API for decoding `Buffer` objects into
|
|
|
|
strings in a manner that preserves encoded multi-byte UTF-8 and UTF-16
|
|
|
|
characters. It can be accessed using:
|
|
|
|
|
|
|
|
```js
|
2017-06-01 00:21:22 +02:00
|
|
|
const { StringDecoder } = require('string_decoder');
|
2016-05-23 23:30:48 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
The following example shows the basic use of the `StringDecoder` class.
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2017-06-01 00:21:22 +02:00
|
|
|
const { StringDecoder } = require('string_decoder');
|
2016-01-17 18:39:07 +01:00
|
|
|
const decoder = new StringDecoder('utf8');
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2016-04-25 04:36:57 +02:00
|
|
|
const cent = Buffer.from([0xC2, 0xA2]);
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log(decoder.write(cent));
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2016-04-25 04:36:57 +02:00
|
|
|
const euro = Buffer.from([0xE2, 0x82, 0xAC]);
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log(decoder.write(euro));
|
|
|
|
```
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2016-05-23 23:30:48 +02:00
|
|
|
When a `Buffer` instance is written to the `StringDecoder` instance, an
|
|
|
|
internal buffer is used to ensure that the decoded string does not contain
|
|
|
|
any incomplete multibyte characters. These are held in the buffer until the
|
|
|
|
next call to `stringDecoder.write()` or until `stringDecoder.end()` is called.
|
|
|
|
|
2016-05-27 21:15:25 +02:00
|
|
|
In the following example, the three UTF-8 encoded bytes of the European Euro
|
|
|
|
symbol (`€`) are written over three separate operations:
|
2016-05-23 23:30:48 +02:00
|
|
|
|
|
|
|
```js
|
2017-06-01 00:21:22 +02:00
|
|
|
const { StringDecoder } = require('string_decoder');
|
2016-05-23 23:30:48 +02:00
|
|
|
const decoder = new StringDecoder('utf8');
|
|
|
|
|
|
|
|
decoder.write(Buffer.from([0xE2]));
|
|
|
|
decoder.write(Buffer.from([0x82]));
|
|
|
|
console.log(decoder.end(Buffer.from([0xAC])));
|
|
|
|
```
|
|
|
|
|
|
|
|
## Class: new StringDecoder([encoding])
|
2016-05-13 19:01:33 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.99
|
|
|
|
-->
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2016-05-23 23:30:48 +02:00
|
|
|
* `encoding` {string} The character encoding the `StringDecoder` will use.
|
2018-04-02 03:44:32 +02:00
|
|
|
**Default:** `'utf8'`.
|
2012-04-20 08:32:58 +02:00
|
|
|
|
2016-05-23 23:30:48 +02:00
|
|
|
Creates a new `StringDecoder` instance.
|
|
|
|
|
|
|
|
### stringDecoder.end([buffer])
|
2016-05-13 19:01:33 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.9.3
|
|
|
|
-->
|
2012-10-12 00:53:11 +02:00
|
|
|
|
2016-05-23 23:30:48 +02:00
|
|
|
* `buffer` {Buffer} A `Buffer` containing the bytes to decode.
|
2018-04-11 20:07:14 +02:00
|
|
|
* Returns: {string}
|
2016-05-23 23:30:48 +02:00
|
|
|
|
|
|
|
Returns any remaining input stored in the internal buffer as a string. Bytes
|
|
|
|
representing incomplete UTF-8 and UTF-16 characters will be replaced with
|
|
|
|
substitution characters appropriate for the character encoding.
|
2015-11-04 18:36:11 +01:00
|
|
|
|
2016-05-23 23:30:48 +02:00
|
|
|
If the `buffer` argument is provided, one final call to `stringDecoder.write()`
|
|
|
|
is performed before returning the remaining input.
|
|
|
|
|
|
|
|
### stringDecoder.write(buffer)
|
2016-05-13 19:01:33 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.99
|
2017-02-22 00:10:25 +01:00
|
|
|
changes:
|
2017-03-16 04:26:14 +01:00
|
|
|
- version: v8.0.0
|
2017-02-22 00:10:25 +01:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/9618
|
|
|
|
description: Each invalid character is now replaced by a single replacement
|
|
|
|
character instead of one for each individual byte.
|
2016-05-13 19:01:33 +02:00
|
|
|
-->
|
2015-11-04 18:36:11 +01:00
|
|
|
|
2016-05-23 23:30:48 +02:00
|
|
|
* `buffer` {Buffer} A `Buffer` containing the bytes to decode.
|
2018-04-11 20:07:14 +02:00
|
|
|
* Returns: {string}
|
2016-05-23 23:30:48 +02:00
|
|
|
|
|
|
|
Returns a decoded string, ensuring that any incomplete multibyte characters at
|
|
|
|
the end of the `Buffer` are omitted from the returned string and stored in an
|
|
|
|
internal buffer for the next call to `stringDecoder.write()` or
|
|
|
|
`stringDecoder.end()`.
|