Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

모든 슬래시 뒤에 JavaScript에서 URL을 분할하시겠습니까?

<시간/>

URL을 분할하려면 split() 메소드를 사용하십시오. 그 전에 toString()을 사용하십시오. 예를 살펴보겠습니다.

예시

var newURL="https://www.example.com/index.html/homePage/aboutus/";
console.log(newURL);
var splitURL=newURL.toString().split("/");
console.log(splitURL);

위에서, 우리는 이러한 슬래시 이후에 URL을 분할해야 하기 때문에 split() 함수에서 슬래시를 설정했습니다.

위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -

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',
   ''
]