Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
let str: string = "phptypescript php c++ python php phphp"; const word = "php"; const replacewith = "GO"; str = str.replace(new RegExp(word, "gi"), replacewith); console.log(str); /* run: "GOtypescript GO c++ python GO GOhp" */