ধরা যাক আমাদের নিম্নলিখিত স্ট্রিংগুলি রয়েছে। তাদের মধ্যে একটি প্রশ্ন চিহ্ন দিয়ে শুরু হচ্ছে যেমন বিরাম চিহ্ন −
var sentence1 = 'My Name is John Smith.' var sentence2 = '? My Name is John Smith.'
উপরোক্ত দুটি বাক্যের যেকোনো একটি বিরাম চিহ্ন দিয়ে শুরু হয় কিনা তা আমাদের পরীক্ষা করতে হবে। স্ট্রিং বিরাম চিহ্ন দিয়ে শুরু হয় কিনা তা পরীক্ষা করতে, কোডটি নিম্নরূপ −
উদাহরণ
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