About 1,940,000 results
Open links in new tab
  1. 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.

  2. 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 …

  3. REPLACE Synonyms: 14 Similar and Opposite Words - Merriam-Webster

    Some common synonyms of replace are displace, supersede, and supplant. While all these words mean "to put out of a usual or proper place or into the place of another," replace implies a …

  4. REPLACE function - Microsoft Support

    In workbooks set to Compatibility Version 2, REPLACE has improved behavior with Surrogate Pairs, counting them as one character instead of two. Variation Selectors (commonly used …

  5. 421 Synonyms & Antonyms for REPLACE | Thesaurus.com

    Find 421 different ways to say REPLACE, along with antonyms, related words, and example sentences at Thesaurus.com.

  6. REPLACE (Transact-SQL) - SQL Server | Microsoft Learn

    Sep 3, 2024 · Transact-SQL reference for the REPLACE function, which replaces all occurrences of a specified string value with another string value.

  7. 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.

  8. Python String replace () Method - GeeksforGeeks

    Oct 28, 2024 · The replace () method replaces all occurrences of a specified substring in a string and returns a new string without modifying the original string. Let’s look at a simple example of …

  9. Find and Replace Text – Online Text Tools

    With this tool you can replace one part of text with another. First, enter the text pattern you want to replace in search text options, then specify the new content that you want to see in its place in …

  10. Replace multiple characters in one replace call - Stack Overflow

    If you want to replace multiple characters you can call the String.prototype.replace() with the replacement argument being a function that gets called for each match. All you need is an …