URL को विभाजित करने के लिए, स्प्लिट () विधि का उपयोग करें। इससे पहले toString() का प्रयोग करें। आइए एक उदाहरण देखें
उदाहरण
var newURL="https://www.example.com/index.html/homePage/aboutus/"; console.log(newURL); var splitURL=newURL.toString().split("/"); console.log(splitURL);
ऊपर, हमने स्प्लिट () फ़ंक्शन में फ़ॉरवर्ड स्लैश सेट किया है, क्योंकि हमें ऐसे हर स्लैश के बाद URL को विभाजित करने की आवश्यकता होती है।
उपरोक्त प्रोग्राम को चलाने के लिए, आपको निम्न कमांड का उपयोग करने की आवश्यकता है -
node fileName.js.
आउटपुट
यहाँ, मेरी फ़ाइल का नाम है demo150.js। यह निम्नलिखित आउटपुट देगा -
PS C:\Users\Amit\JavaScript-code> node demo150.js https://www.example.com/index.html/homePage/aboutus/[ 'http:', '', 'www.example.com', 'index.html', 'homePage', 'aboutus', '' ]