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

URL 문자열이 절대 또는 상대인지 테스트하는 방법 - JavaScript?

<시간/>

URL 문자열을 테스트하려면 정규식을 사용하십시오.

예시

다음은 코드입니다 -

var regularExpressionForURL = /^https?:\/\//i;
var originalURL1 = "https://www.example.com/index";
var originalURL2 = "/index";
if (regularExpressionForURL.test(originalURL1)) {
   console.log("This is absolute URL");
}
else {
   console.log("This is relative URL");
}
if (regularExpressionForURL.test(originalURL2)) {
   console.log("This is absolute URL");
}
else {
   console.log("This is relative URL");
}

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

node fileName.js.

여기에서 내 파일 이름은 demo266.js입니다.

출력

이것은 콘솔에 다음과 같은 출력을 생성합니다 -

PS C:\Users\Amit\javascript-code> node demo266.js
This is absolute URL
This is relative URL