Có, chúng tôi có thể thay thế một phần của chuỗi mà không cần tạo chuỗi mới bằng cách sử dụng phương thức Replace () theo cú pháp bên dưới -
var anyVariableName=yourValue; yourVariableName=yourVariableName.replace(yourOldValue,yourNewValue);
Ví dụ
var message="Hello,this is John"; console.log("Before replacing the message="+message); message=message.replace("John","David Miller"); console.log("After replacing the message="+message);
Để chạy chương trình trên, bạn cần sử dụng lệnh sau -
node fileName.js.
Đây, tên tệp của tôi là demo57.js.
Đầu ra
Điều này sẽ tạo ra kết quả sau -
PS C:\Users\Amit\JavaScript-code> node demo57.js Before replacing the message=Hello,this is John After replacing the message=Hello,this is David Miller