The stringDecoder.write() method is used to return a decoded string from the given Buffer, TypedArray or DataView. This method also ensures that any incomplete multibyte characters at the end of the buffer are omitted from the returned string. These characters are stored in an internal buffer for the next call to the stringDecoder.write() or stringDecoder.end() methods.
Syntax:
stringDecoder.write( buffer )
Parameters: This method accepts single parameter as mentioned above and described below:
- buffer: It is a Buffer, TypedArray or DataView that contains the bytes that have to be decoded.
Return Value: It returns a string which is decoded from the given buffer.
Below programs illustrate the stringDecoder.write() method in Node.js:
Example 1:
const { StringDecoder } = require("string_decoder");
const decoder = new StringDecoder("utf-8");
const text_one = Buffer.from("GeeksforGeeks", "utf-8");
let decoded_text = decoder.write(text_one);
console.log("Decoded Text:", decoded_text);
|
Output:
Decoded Text: GeeksforGeeks
Example 2:
const { StringDecoder } = require("string_decoder");
const decoder = new StringDecoder("utf-8");
const hex_text = new Buffer.from(
"4765656B73666F724765656B73", "hex");
let decoded_hex_text = decoder.write(hex_text);
console.log("Decoded Text Hex:", decoded_hex_text);
const base64_text = new Buffer.from(
"R2Vla3Nmb3JHZWVrcw==", "base64");
let decoded_base64_text = decoder.write(base64_text);
console.log("Decoded Text Base64:", decoded_base64_text);
const cent_symbol = Buffer.from([0xc2, 0xa2]);
let cent_symbol_out = decoder.write(cent_symbol);
console.log("Cent Symbol:", cent_symbol_out);
|
Output:
Decoded Text Hex: GeeksforGeeks
Decoded Text Base64: GeeksforGeeks
Cent Symbol: ¢
Reference: https://nodejs.org/api/string_decoder.html#string_decoder_stringdecoder_write_buffer
Learn to code easily with our course
Coding for Everyone. This course is accessible and designed for everyone, even if you're new to coding. Start today and join millions on a journey to improve your skills!Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Commit to GfG's Three-90 Challenge! Purchase a course, complete 90% in 90 days, and save 90% cost click here to explore.
Last Updated :
08 Oct, 2021
Like Article
Save Article
Share your thoughts in the comments
Please Login to comment...