रेगेक्स में विशिष्ट शब्द का मिलान करने के लिए, रेगुलर एक्सप्रेशन का उपयोग करें।
उदाहरण
निम्नलिखित कोड है -
var sentence = "This is the not javascript Tutorial"; var regularExpression = /\bjavascript\b/g; var output = regularExpression.test(sentence); console.log(output);
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ, मेरी फ़ाइल का नाम है demo308.js.
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
PS C:\Users\Amit\javascript-code> node demo308.js true