अग्रणी शून्यों को हटाने के लिए, नीचे दिए गए सिंटैक्स के अनुसार रेगेक्स इन रिप्लेस () विधि का उपयोग करें -
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