About 2,440,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. 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 …

  3. pandas.DataFrame.replace — pandas 2.3.3 documentation

    Replace values given in to_replace with value. Values of the Series/DataFrame are replaced with other values dynamically. This differs from updating with .loc or .iloc, which require you to …

  4. String.Replace Method (System) | Microsoft Learn

    Returns a new string in which all occurrences of a specified Unicode character in this instance are replaced with another specified Unicode character. Returns a new string in which all …

  5. JavaScript String replace () Method

    In this tutorial, you'll how to use JavaScript String replace () function to replace a substring in a string with a new one.

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

    Feb 28, 2023 · In this article, you have learned how to replace a string or substring in JavaScript with the replace() method and the various instances in which the replace() method can work.

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

  8. REPLACE | definition in the Cambridge English Dictionary

    They had a dozen cats on set that day, to replace the ones that didn't come up as they tried to get the scene.

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

  10. JavaScript String replace() Method: Replacing String - CodeLucky

    Feb 6, 2025 · This guide covers the syntax, usage, and advanced techniques of the replace() method, providing you with the knowledge to effectively manipulate strings in JavaScript.