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

JavaScript 정규식을 통해 Tutorialspoint URL을 확인하시겠습니까?

<시간/>

특정 URL을 확인하려면 정규식을 사용하세요.

코드는 다음과 같습니다 -

function validateSoundURL(myURL) {
   var regularExpression = /^https?:\/\/(tutorialspoint\.com)\/(.*)$/;
   return myURL.match(regularExpression) && myURL.match(regularExpression)[2]
}
console.log(validateSoundURL("https://tutorialspoint.com/index"));
console.log(validateSoundURL("https://tutorialspoint.com/java"));

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

node fileName.js.

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

출력

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

PS C:\Users\Amit\javascript-code> node demo259.js
index
java