About 342,000 results
Open links in new tab
  1. How to replace several words in javascript - Stack Overflow

    Use a regular expression with the alternator (|) and case insensitive modifier (/i): var str = sometext.innerHTML, reg = /Dave Chambers|David Chambers|Will Smith/i; str = …

  2. Replace Specific Words in a String Using Regular Expressions in JavaScript

    Jul 16, 2024 · Replacing specific words with another word in a string using regular expressions in JavaScript means searching for all occurrences of a particular word or pattern within the text …

  3. JavaScript String replace() Method - W3Schools

    To replace all instances, use a regular expression with the g modifier set. Read more about regular expressions in our: - replaces all matches. Required. The value, or regular expression, …

  4. How to Replace Multiple Words and Characters in JavaScript

    Dec 6, 2021 · Using replace() function in JavaScript has many use cases such as removing unwanted or escape characters in a string. Also, education and languages apps benefit from …

  5. Change specific word in HTML with JavaScript - Stack Overflow

    May 10, 2018 · I want to chane averey word "morr" in the HTML using JavaScript. I'm not allowed to touch the HTML so i cant use span or id. Can anyone help me? Here's the HTML: Morrhår …

  6. javascript - Changing one specific word to another word

    Oct 9, 2018 · I'm trying to change the specific word "katt" to "smurf" throughout the whole webpage. Every single "katt" is within a "span" tag and I can change it using this code: …

  7. How to replace a portion of strings with another value in JavaScript ...

    May 27, 2024 · In JavaScript, replacing a portion of strings with another value involves using the `replace()` method or regular expressions. This process is essential for text manipulation tasks …

  8. JavaScript Replace – How to Replace a String or Substring in JS

    Feb 28, 2023 · In JavaScript, you can use the replace() method to replace a string or substring in a string. The replace() method returns a new string with the replacement. The replace() …

  9. String.prototype.replace() - JavaScript | MDN - MDN Web Docs

    Apr 28, 2025 · The replace() method of String values returns a new string with one, some, or all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp, and …

  10. JavaScript Replace(): A Step-By-Step Guide - Career Karma

    Nov 17, 2020 · In this guide, we’re going to break down the JavaScript string replace () function and explore how it can be used to amend the text. The JavaScript replace () method searches …

Refresh