हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना आवश्यक है जो एक स्ट्रिंग लेता है जिसमें पैराग्राफ का टेक्स्ट पहले तर्क के रूप में होता है और दूसरे तर्क के रूप में एक खंड आकार संख्या होती है।
फ़ंक्शन को निम्न चीज़ें करनी चाहिए -
-
स्ट्रिंग को लंबाई के टुकड़ों में तोड़ें जो खंड आकार (दूसरा तर्क) से अधिक न हो,
-
ब्रेकिंग केवल व्हाइटस्पेस या वाक्य के अंत में होनी चाहिए (शब्द को तोड़ना नहीं चाहिए)।
उदाहरण के लिए - यदि इनपुट स्ट्रिंग है -
const str = 'this is a string'; const chunkLength = 6;
तब आउटपुट होना चाहिए -
const output = ['this', 'is a', 'string'];
आइए इस फ़ंक्शन के लिए कोड लिखें -
हम निर्दिष्ट वर्णों से मेल खाने के लिए नियमित अभिव्यक्ति का उपयोग करेंगे। एक बार मिलान हो जाने पर हम तब तक पीछे हटेंगे जब तक हमें कोई खाली स्थान या स्ट्रिंग का अंत नहीं मिल जाता।
उदाहरण
इसके लिए कोड होगा -
const size = 200; const str = "This process was continued for several years for the deaf child does not here in a month or even in two or three years the numberless items and expressions using the simplest daily intercourse little hearing child learns from these constant rotation and imitation the conversation he hears in his home simulates is mine and suggest topics and called forth the spontaneous expression of his own thoughts."; const splitString = (str = '', size) > { const regex = new RegExp(String.raw`\S.{1,${size &minu; 2}}\S(?= |$)`, 'g'); const chunks = str.match(regex); return chunks; } console.log(splitString(str, size));
आउटपुट
और कंसोल में आउटपुट होगा -
[ 'This process was continued for several years for the deaf child does not here in a month or even in two or three years the numberless items and expressions using the simplest daily intercourse little', 'hearing child learns from these constant rotation and imitation the conversation he hears in his home simulates is mine and suggest topics and called forth the spontaneous expression of his own', 'thoughts.' ]