สมมติว่าต่อไปนี้คือ URL ของเรา -
https://www.tutorialspoint.com/advanced_microsoft_word_2013_tutorial/index.asp";
เราต้องการเพียงค่าสุดท้ายและลบส่วนที่เหลือออก นั่นคือผลลัพธ์ควรเป็น −
index.asp
สำหรับสิ่งนี้ คุณสามารถใช้แทนที่ () ร่วมกับนิพจน์ทั่วไปได้
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
var url = "https://www.tutorialspoint.com/advanced_microsoft_word_2013_tutorial/index.asp"; var getValues=url.replace(/^.*\//, ''); console.log("The original value = "+url); console.log("New Value = "+getValues);
ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -
node fileName.js.
ที่นี่ ชื่อไฟล์ของฉันคือ demo258.js
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้บนคอนโซล -
PS C:\Users\Amit\javascript-code> node demo258.js The original value = https://www.tutorialspoint.com/advanced_microsoft_word_2013_tutorial/index.asp New Value = index.asp