অতিরিক্ত স্পেস অপসারণ করতে, আপনাকে রেগুলার এক্সপ্রেশন সহ trim() ব্যবহার করতে হবে। trim() −
প্রয়োগ করার আগে স্পেস সহ আমাদের স্ট্রিং নিচে দেওয়া হলvar sentence="My name is John Smith ";
এখন, আমরা নিচের কোড −
এর মত অতিরিক্ত স্পেস মুছে ফেলবউদাহরণ
var sentence="My name is John Smith "; console.log("The actual value="); console.log(sentence); var originalSentence = sentence.replace(/\s+/g,'').trim(); var afterRemovingTheSpace=originalSentence.trim(); console.log("After removing the spaces="); console.log(afterRemovingTheSpace);
উপরের প্রোগ্রামটি চালানোর জন্য, আপনাকে নিম্নলিখিত কমান্ডটি ব্যবহার করতে হবে -
node fileName.js.
এখানে, আমার ফাইলের নাম demo90.js।
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেPS C:\Users\Amit\JavaScript-code> node demo90.js The actual value= My name is John Smith After removing the spaces= MynameisJohnSmith