Contact: aviboots(AT)netvision.net.il
42,115 questions
54,815 answers
573 users
const str = "Hello??? How are you?? What is your Wi-Fi password????"; // Use regular expression to match one or more '?' const result = str.replace(/\?+/g, "?"); console.log(result); /* run: Hello? How are you? What is your Wi-Fi password? */