Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ตรวจสอบ URL ของ Tutorialspoint ผ่าน JavaScript regex หรือไม่


หากต้องการตรวจสอบ 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