Contact: aviboots(AT)netvision.net.il
41,162 questions
53,654 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" */