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

จะแทนที่ก่อนสแลชแรก - JavaScript ได้อย่างไร


สมมติว่าต่อไปนี้เป็นสตริงของเราที่มีเครื่องหมายทับ -

var queryStringValue = "welcome/name/john/age/32"

หากต้องการแทนที่ก่อนเครื่องหมายทับแรก ให้ใช้แทนที่ () พร้อมกับนิพจน์ทั่วไป

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

var regularExpression = /^[^/]+/
var queryStringValue = "welcome/name/john/age/32"
var replacedValue = queryStringValue.replace(regularExpression, 'index');
console.log("Original value="+queryStringValue);
console.log("After replacing the value="+replacedValue);

ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -

node fileName.js.

ที่นี่ ชื่อไฟล์ของฉันคือ demo245.js

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้บนคอนโซล -

PS C:\Users\Amit\javascript-code> node demo245.js
Original value=welcome/name/john/age/32
After replacing the value=index/name/john/age/32