কম্পিউটার

জাভাস্ক্রিপ্টে বাফারকে পঠনযোগ্য স্ট্রিংয়ে রূপান্তর করবেন?


এর জন্য, toString('utf8') ধারণাটি ব্যবহার করুন। নিম্নলিখিত কোড -

নীচের কোডে, বাফার সম্পর্কে বিস্তারিত ব্যাখ্যা রয়েছে৷

উদাহরণ

var actualBufferObject = Buffer.from('[John Smith]', 'utf8')
console.log("The actual buffer object=");
console.log(JSON.stringify(actualBufferObject))
console.log("Get back the original object=");
console.log(actualBufferObject.toString('utf8'));
var myObjectValue = '[John Smith]';
console.log("The data you are getting from the buffer is equal to ASCII
code equivalent...")
for (var counter = 0; counter < myObjectValue.length; counter++) {
   console.log("The ascii value of " + myObjectValue[counter] + " is ="
   + (myObjectValue.charCodeAt(counter)));
}

উপরের প্রোগ্রামটি চালানোর জন্য, আপনাকে নিম্নলিখিত কমান্ডটি ব্যবহার করতে হবে -

node fileName.js.

এখানে, আমার ফাইলের নাম demo197.js।

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
PS C:\Users\Amit\javascript-code> node demo197.js
The actual buffer object=
{"type":"Buffer","data":[91,74,111,104,110,32,83,109,105,116,104,93]}
Get back the original object=
[John Smith]
The data you are getting from the buffer is equal to ASCII code equivalent...
The ascii value of [ is =91
The ascii value of J is =74
The ascii value of o is =111
The ascii value of h is =104
The ascii value of n is =110
The ascii value of is =32
The ascii value of S is =83
The ascii value of m is =109
The ascii value of i is =105
The ascii value of t is =116
The ascii value of h is =104
The ascii value of ] is =93

  1. জাভাস্ক্রিপ্ট একটি স্ট্রিংকে বুলিয়ানে রূপান্তর করুন

  2. কিভাবে জাভাস্ক্রিপ্ট অবজেক্টে একটি স্ট্রিং রূপান্তর করবেন?

  3. জাভাস্ক্রিপ্টে পূর্ণসংখ্যা অ্যারেকে স্ট্রিং অ্যারেতে রূপান্তর করবেন?

  4. হেক্সাডেসিমেল মান স্ট্রিংকে C++ এ ASCII মান স্ট্রিং-এ রূপান্তর করুন