PATH:
usr
/
share
/
doc
/
nodejs-docs-16.20.2
/
doc
/
api
{ "type": "module", "source": "doc/api/string_decoder.md", "modules": [ { "textRaw": "String decoder", "name": "string_decoder", "introduced_in": "v0.10.0", "stability": 2, "stabilityText": "Stable", "desc": "<p><strong>Source Code:</strong> <a href=\"https://github.com/nodejs/node/blob/v16.20.2/lib/string_decoder.js\">lib/string_decoder.js</a></p>\n<p>The <code>node:string_decoder</code> module provides an API for decoding <code>Buffer</code> objects\ninto strings in a manner that preserves encoded multi-byte UTF-8 and UTF-16\ncharacters. It can be accessed using:</p>\n<pre><code class=\"language-js\">const { StringDecoder } = require('node:string_decoder');\n</code></pre>\n<p>The following example shows the basic use of the <code>StringDecoder</code> class.</p>\n<pre><code class=\"language-js\">const { StringDecoder } = require('node:string_decoder');\nconst decoder = new StringDecoder('utf8');\n\nconst cent = Buffer.from([0xC2, 0xA2]);\nconsole.log(decoder.write(cent));\n\nconst euro = Buffer.from([0xE2, 0x82, 0xAC]);\nconsole.log(decoder.write(euro));\n</code></pre>\n<p>When a <code>Buffer</code> instance is written to the <code>StringDecoder</code> instance, an\ninternal buffer is used to ensure that the decoded string does not contain\nany incomplete multibyte characters. These are held in the buffer until the\nnext call to <code>stringDecoder.write()</code> or until <code>stringDecoder.end()</code> is called.</p>\n<p>In the following example, the three UTF-8 encoded bytes of the European Euro\nsymbol (<code>€</code>) are written over three separate operations:</p>\n<pre><code class=\"language-js\">const { StringDecoder } = require('node:string_decoder');\nconst decoder = new StringDecoder('utf8');\n\ndecoder.write(Buffer.from([0xE2]));\ndecoder.write(Buffer.from([0x82]));\nconsole.log(decoder.end(Buffer.from([0xAC])));\n</code></pre>", "classes": [ { "textRaw": "Class: `StringDecoder`", "type": "class", "name": "StringDecoder", "methods": [ { "textRaw": "`stringDecoder.end([buffer])`", "type": "method", "name": "end", "meta": { "added": [ "v0.9.3" ], "changes": [] }, "signatures": [ { "return": { "textRaw": "Returns: {string}", "name": "return", "type": "string" }, "params": [ { "textRaw": "`buffer` {Buffer|TypedArray|DataView} A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode.", "name": "buffer", "type": "Buffer|TypedArray|DataView", "desc": "A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode." } ] } ], "desc": "<p>Returns any remaining input stored in the internal buffer as a string. Bytes\nrepresenting incomplete UTF-8 and UTF-16 characters will be replaced with\nsubstitution characters appropriate for the character encoding.</p>\n<p>If the <code>buffer</code> argument is provided, one final call to <code>stringDecoder.write()</code>\nis performed before returning the remaining input.\nAfter <code>end()</code> is called, the <code>stringDecoder</code> object can be reused for new input.</p>" }, { "textRaw": "`stringDecoder.write(buffer)`", "type": "method", "name": "write", "meta": { "added": [ "v0.1.99" ], "changes": [ { "version": "v8.0.0", "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." } ] }, "signatures": [ { "return": { "textRaw": "Returns: {string}", "name": "return", "type": "string" }, "params": [ { "textRaw": "`buffer` {Buffer|TypedArray|DataView} A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode.", "name": "buffer", "type": "Buffer|TypedArray|DataView", "desc": "A `Buffer`, or `TypedArray`, or `DataView` containing the bytes to decode." } ] } ], "desc": "<p>Returns a decoded string, ensuring that any incomplete multibyte characters at\nthe end of the <code>Buffer</code>, or <code>TypedArray</code>, or <code>DataView</code> are omitted from the\nreturned string and stored in an internal buffer for the next call to\n<code>stringDecoder.write()</code> or <code>stringDecoder.end()</code>.</p>" } ], "signatures": [ { "params": [ { "textRaw": "`encoding` {string} The character [encoding][] the `StringDecoder` will use. **Default:** `'utf8'`.", "name": "encoding", "type": "string", "default": "`'utf8'`", "desc": "The character [encoding][] the `StringDecoder` will use." } ], "desc": "<p>Creates a new <code>StringDecoder</code> instance.</p>" } ] } ], "type": "module", "displayName": "String decoder" } ] }
[-] async_context.json
[edit]
[-] process.md
[edit]
[-] tracing.html
[edit]
[-] addons.json
[edit]
[-] webstreams.html
[edit]
[-] debugger.md
[edit]
[-] debugger.html
[edit]
[-] tls.json
[edit]
[-] inspector.md
[edit]
[-] child_process.json
[edit]
[-] packages.html
[edit]
[-] events.md
[edit]
[-] synopsis.html
[edit]
[-] inspector.html
[edit]
[-] dgram.json
[edit]
[-] cli.html
[edit]
[-] test.json
[edit]
[-] repl.md
[edit]
[-] worker_threads.md
[edit]
[-] webcrypto.html
[edit]
[-] readline.html
[edit]
[-] crypto.html
[edit]
[-] events.json
[edit]
[-] esm.html
[edit]
[-] querystring.md
[edit]
[-] http.html
[edit]
[-] buffer.md
[edit]
[-] http2.md
[edit]
[-] http.json
[edit]
[-] documentation.json
[edit]
[-] domain.json
[edit]
[-] domain.html
[edit]
[-] embedding.md
[edit]
[-] cluster.md
[edit]
[-] corepack.json
[edit]
[-] errors.md
[edit]
[-] modules.json
[edit]
[-] string_decoder.md
[edit]
[-] v8.md
[edit]
[-] n-api.html
[edit]
[-] module.md
[edit]
[-] querystring.json
[edit]
[+]
..
[-] querystring.html
[edit]
[-] fs.json
[edit]
[-] punycode.md
[edit]
[-] esm.json
[edit]
[-] test.html
[edit]
[-] repl.json
[edit]
[-] async_hooks.html
[edit]
[-] async_hooks.md
[edit]
[-] permissions.md
[edit]
[-] util.md
[edit]
[-] zlib.json
[edit]
[-] synopsis.md
[edit]
[-] vm.md
[edit]
[-] tty.md
[edit]
[-] child_process.html
[edit]
[-] embedding.html
[edit]
[-] stream.html
[edit]
[-] report.json
[edit]
[-] report.md
[edit]
[-] policy.html
[edit]
[-] policy.json
[edit]
[-] index.md
[edit]
[-] addons.html
[edit]
[-] worker_threads.html
[edit]
[-] path.json
[edit]
[-] zlib.md
[edit]
[-] buffer.html
[edit]
[-] perf_hooks.json
[edit]
[-] v8.json
[edit]
[-] modules.html
[edit]
[-] diagnostics_channel.json
[edit]
[-] crypto.json
[edit]
[-] corepack.html
[edit]
[-] index.html
[edit]
[-] os.md
[edit]
[-] async_context.html
[edit]
[-] readline.json
[edit]
[-] async_context.md
[edit]
[-] inspector.json
[edit]
[-] report.html
[edit]
[-] repl.html
[edit]
[-] assert.html
[edit]
[-] test.md
[edit]
[-] packages.json
[edit]
[-] perf_hooks.md
[edit]
[-] deprecations.md
[edit]
[-] intl.json
[edit]
[-] webstreams.json
[edit]
[-] globals.md
[edit]
[-] string_decoder.html
[edit]
[-] cluster.html
[edit]
[-] perf_hooks.html
[edit]
[-] dns.md
[edit]
[-] punycode.html
[edit]
[-] wasi.json
[edit]
[-] n-api.md
[edit]
[-] process.html
[edit]
[-] dgram.md
[edit]
[-] tty.html
[edit]
[-] async_hooks.json
[edit]
[-] tty.json
[edit]
[-] path.md
[edit]
[-] dgram.html
[edit]
[-] console.json
[edit]
[-] intl.html
[edit]
[-] tracing.json
[edit]
[-] vm.json
[edit]
[-] webcrypto.md
[edit]
[-] url.html
[edit]
[-] console.md
[edit]
[-] permissions.json
[edit]
[-] synopsis.json
[edit]
[-] corepack.md
[edit]
[-] embedding.json
[edit]
[-] dns.json
[edit]
[-] https.md
[edit]
[-] documentation.html
[edit]
[-] module.json
[edit]
[-] process.json
[edit]
[-] esm.md
[edit]
[-] util.html
[edit]
[-] tls.md
[edit]
[-] webcrypto.json
[edit]
[-] net.json
[edit]
[-] http2.json
[edit]
[-] cluster.json
[edit]
[-] permissions.html
[edit]
[-] http2.html
[edit]
[-] deprecations.json
[edit]
[-] stream.md
[edit]
[-] https.json
[edit]
[-] url.md
[edit]
[-] vm.html
[edit]
[-] wasi.md
[edit]
[+]
assets
[-] diagnostics_channel.html
[edit]
[-] stream.json
[edit]
[-] all.html
[edit]
[-] punycode.json
[edit]
[-] url.json
[edit]
[-] errors.html
[edit]
[-] cli.md
[edit]
[-] buffer.json
[edit]
[-] worker_threads.json
[edit]
[-] globals.html
[edit]
[-] string_decoder.json
[edit]
[-] console.html
[edit]
[-] v8.html
[edit]
[-] diagnostics_channel.md
[edit]
[-] debugger.json
[edit]
[-] child_process.md
[edit]
[-] deprecations.html
[edit]
[-] os.html
[edit]
[-] wasi.html
[edit]
[-] domain.md
[edit]
[-] os.json
[edit]
[-] readline.md
[edit]
[-] webstreams.md
[edit]
[-] tls.html
[edit]
[-] index.json
[edit]
[-] intl.md
[edit]
[-] tracing.md
[edit]
[-] zlib.html
[edit]
[-] packages.md
[edit]
[-] all.json
[edit]
[-] assert.json
[edit]
[-] fs.html
[edit]
[-] errors.json
[edit]
[-] documentation.md
[edit]
[-] policy.md
[edit]
[-] n-api.json
[edit]
[-] timers.html
[edit]
[-] cli.json
[edit]
[-] modules.md
[edit]
[-] http.md
[edit]
[-] util.json
[edit]
[-] fs.md
[edit]
[-] timers.md
[edit]
[-] globals.json
[edit]
[-] assert.md
[edit]
[-] module.html
[edit]
[-] dns.html
[edit]
[-] net.md
[edit]
[-] events.html
[edit]
[-] timers.json
[edit]
[-] https.html
[edit]
[-] crypto.md
[edit]
[-] path.html
[edit]
[-] addons.md
[edit]
[-] net.html
[edit]