Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để tạo bộ lọc và phương pháp thay thế từ - JavaScript?

Không có chức năng cài sẵn nào để thay thế tất cả các lần xuất hiện của từ. Bạn cần tạo chức năng của riêng mình.

Giả sử sau đây là chuỗi của chúng tôi -

var sentence = "Yes, My Name is John Smith. I live in US. Yes, My Favourite Subject is JavaScript";

Ví dụ

Sau đây là mã -

var sentence = "Yes, My Name is John Smith. I live in US. Yes, My Favourite Subject is JavaScript";
console.log(sentence);
function replaceYesWithHi(word, sentence, replaceValue) {
   return sentence.split(word).join(replaceValue);
}
var replacementofYesWithHi = replaceYesWithHi("Yes", sentence, "Hi");
console.log(replacementofYesWithHi);

Để chạy chương trình trên, hãy sử dụng lệnh sau -

node fileName.js.

Đây, tên tệp của tôi là demo240.js.

Đầu ra

Kết quả như sau -

PS C:\Users\Amit\javascript-code> node demo240.js
Yes, My Name is John Smith. I live in US. Yes, My Favourite Subject is JavaScript
Hi, My Name is John Smith. I live in US. Hi, My Favourite Subject is JavaScript