About 50 results
Open links in new tab
  1. How do I replace all occurrences of a string? - Stack Overflow

    When replacing all occurrences of aba in ababa with ca, which result do you expect? caba? abca? cca?

  2. How to use string.replace () in python 3.x - Stack Overflow

    Feb 26, 2012 · The string.replace() is deprecated on python 3.x. What is the new way of doing this?

  3. Difference between String replace () and replaceAll ()

    May 31, 2012 · What's the difference between java.lang.String 's replace() and replaceAll() methods, other than the latter uses regex? For simple substitutions like, replace . with /, is there any difference?

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

    160 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 object …

  5. How do I replace a character at a specific index in JavaScript?

    0 You can use the following function to replace Character or String at a particular position of a String. To replace all the following match cases use String.prototype.replaceAllMatches() function.

  6. python - Case insensitive replace - Stack Overflow

    May 28, 2009 · 7 This function uses both the str.replace() and re.findall() functions. It will replace all occurences of pattern in string with repl in a case-insensitive way.

  7. JavaScript String replace vs replaceAll - Stack Overflow

    Apr 28, 2021 · ECMAScript 2021 has added a new String function replaceAll. A long time ago in a galaxy not so far away, people used split + join or regular expressions to replace all occurences of a …

  8. How do I replace all line breaks in a string with <br /> elements?

    Learn how to replace all line breaks in a string with <br> elements using JavaScript on Stack Overflow.

  9. replace '\n' in javascript - Stack Overflow

    23 use s = r.replace(/\\n/g," "); Get a reference: The "g" in the javascript replace code stands for "greedy" which means the replacement should happen more than once if possible

  10. Pandas replace and downcasting deprecation since version 2.2.0

    Nov 26, 2024 · Pandas replace and downcasting deprecation since version 2.2.0 Asked 1 year, 2 months ago Modified 1 year, 2 months ago Viewed 8k times