मान लीजिए, हमारे पास एक स्ट्रिंग है जिसमें इस तरह के कुछ बड़े अंग्रेजी अक्षर हैं -
const str = "Connecting to server Connection has been successful We found result";
हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना आवश्यक है जो एक ऐसी स्ट्रिंग लेता है और स्ट्रिंग में प्रत्येक बड़े अक्षर से पहले स्पेस से पहले एक अल्पविराम ',' डालता है।
इसके लिए कोड होगा -
const str = "Connecting to server Connection has been successful We found result"; const capitaliseNew = str => { let newStr = ''; const regex = new RegExp(/.[A-Z]/g); newStr = str.replace(regex, ',$&'); return newStr; }; console.log(capitaliseNew(str));
कंसोल पर आउटपुट निम्नलिखित है -
Connecting to server, Connection has been successful, We found result