मान लें कि निम्नलिखित हमारी स्ट्रिंग है -
var sentence = "My Name is David Miller I live in AUS";
उपरोक्त स्ट्रिंग में रिक्त स्थान को अंडरस्कोर से बदलने के लिए, स्प्लिट () का उपयोग ज्वाइन () के साथ करें।
उदाहरण
निम्नलिखित कोड है -
var sentence = "My Name is David Miller I live in AUS"; var withUnderscore = sentence.split(' ').join('_'); console.log("The actual result=") console.log(sentence); console.log("After replacing the space with underscore=") console.log(withUnderscore);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करना होगा जो इस प्रकार है -
node fileName.js
यहाँ, मेरी फ़ाइल का नाम है demo250.js.
आउटपुट
यह कंसोल पर निम्न आउटपुट उत्पन्न करेगा -
PS C:\Users\Amit\javascript-code> node demo250.js The actual result= My Name is David Miller I live in AUS After replacing the space with underscore= My_Name_is_David_Miller_I_live_in_AUS