About 4,970,000 results
Open links in new tab
  1. String.prototype.replace () - JavaScript | MDN

    Jul 10, 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 …

  2. REPLACE Definition & Meaning - Merriam-Webster

    replace, displace, supplant, supersede mean to put out of a usual or proper place or into the place of another. replace implies a filling of a place once occupied by something lost, destroyed, or …

  3. Python String replace () Method - W3Schools

    Definition and Usage The replace() method replaces a specified phrase with another specified phrase. Note: All occurrences of the specified phrase will be replaced, if nothing else is specified.

  4. REPLACE | English meaning - Cambridge Dictionary

    REPLACE definition: 1. to take the place of something, or to put something or someone in the place of something or…. Learn more.

  5. JavaScript String replace () Method - W3Schools

    The replace() method does not change the original string. If you replace a value, only the first instance will be replaced. To replace all instances, use a regular expression with the g modifier …

  6. REPLACE | definition in the Cambridge English Dictionary

    REPLACE meaning: 1. to take the place of something, or to put something or someone in the place of something or…. Learn more.

  7. SUBSTITUTE function - Microsoft Support

    This article describes the formula syntax and usage of the SUBSTITUTE function in Microsoft Excel. Description Substitutes new_text for old_text in a text string. Use SUBSTITUTE when …

  8. REPLACE Definition & Meaning | Dictionary.com

    REPLACE definition: to assume the former role, position, or function of; substitute for (a person or thing). See examples of replace used in a sentence.

  9. Python String replace () Method - GeeksforGeeks

    Nov 17, 2025 · The replace () method returns a new string where all occurrences of a specified substring are replaced with another substring. It does not modify the original string because …

  10. How to Replace a String in Python

    Jan 15, 2025 · In this tutorial, you'll learn how to remove or replace a string or substring. You'll go from the basic string method .replace () all the way up to a multi-layer regex pattern using the …