প্রধান শূন্য অপসারণ করতে, নীচের সিনট্যাক্সের মতো রিপ্লেস() পদ্ধতিতে Regex ব্যবহার করুন -
yourStringValue.replace(/\D|^0+/g, ""))
ধরা যাক সংখ্যা মান সহ আমাদের ভেরিয়েবলগুলি হল −
var theValue1="5001000"; var theValue2="100000005"; var theValue3="05000001"; var theValue4="00000000006456";
উদাহরণ
var theValue1="5001000"; var theValue2="100000005"; var theValue3="05000001"; var theValue4="00000000006456"; console.log(theValue1.replace(/\D|^0+/g, "")); console.log(theValue2.replace(/\D|^0+/g, "")); console.log(theValue3.replace(/\D|^0+/g, "")); console.log(theValue4.replace(/\D|^0+/g, ""));
উপরের প্রোগ্রামটি চালানোর জন্য, আপনাকে নিম্নলিখিত কমান্ডটি ব্যবহার করতে হবে -
node fileName.js.
আউটপুট
এখানে, আমার ফাইলের নাম demo101.js। এটি নিম্নলিখিত আউটপুট −
তৈরি করবেPS C:\Users\Amit\JavaScript-code> node demo101.js 5001000 100000005 5000001 6456