मान लीजिए कि हमारे पास निम्नलिखित तार हैं। उनमें से एक प्रश्न चिह्न यानी विराम चिह्न से शुरू हो रहा है -
var sentence1 = 'My Name is John Smith.' var sentence2 = '? My Name is John Smith.'
हमें यह जांचने की आवश्यकता है कि क्या उपरोक्त दो वाक्यों में से कोई भी विराम चिह्न से शुरू होता है। यह जाँचने के लिए कि ifstring विराम चिह्न से शुरू होता है, कोड इस प्रकार है -
उदाहरण
var punctuationDetailsRegularExpression=/^[.,:!?]/ var sentence1 = 'My Name is John Smith.' var output1 = !!sentence1.match(punctuationDetailsRegularExpression) if(output1==true) console.log("This ("+sentence1+") starts with a punctuation"); else console.log("This ("+sentence1+") does not starts with a punctuation"); var sentence2 = '? My Name is John Smith.' var output2 = !!sentence2.match(punctuationDetailsRegularExpression) if(output2==true) console.log("This ( "+sentence2+") starts with a punctuation"); else console.log("This ( "+sentence2+" ) does not starts with apunctuation");
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
यहाँ मेरी फ़ाइल का नाम है demo209.js.
आउटपुट
यह निम्नलिखित आउटपुट देगा -
PS C:\Users\Amit\javascript-code> node demo209.js This (My Name is John Smith.) does not starts with a punctuation This ( ? My Name is John Smith.) starts with a punctuation