जावास्क्रिप्ट के साथ एक स्ट्रिंग में सभी रिक्त स्थान को हटाने के लिए, आप RegEx का उपयोग कर सकते हैं:
const sentence = "This sentence has 6 white space characters."
console.log(sentence.replace(/\s/g, ""))
// "Thissentencehas6whitespacecharacters."
ऊपर दिया गया उदाहरण केवल परिणाम को लॉग आउट करता है, यह परिवर्तनों को सहेजता नहीं है।
यदि आप अपने टेक्स्ट से सफेद स्थान को स्थायी रूप से हटाना चाहते हैं, तो आपको एक नया चर बनाना होगा और sentence.replace(/\s/g, "")
का मान निर्दिष्ट करना होगा। :
// Sentence with whitespaces
const sentence = "This sentence has 6 white space characters."
// Sentence without whitespace
const sentenceRemoveWhiteSpace = sentence.replace(/\s/g, "")
console.log(sentenceRemoveWhiteSpace)
// Thissentencehas6whitespacecharacters.