About 50 results
Open links in new tab
  1. 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?

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

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

  4. Prettier ask me to replace ⏎↹↹ with - Stack Overflow

    May 26, 2021 · 3 I think this is caused by Prettier being configured to use spaces instead of tabs to indent and then your code editor using tabs. So Prettier wants you to replace those tabs with spaces. …

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

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

  7. c# replace \" characters - Stack Overflow

    text = text.Replace("\\\"", ""); (As mentioned in the comments, this is because strings are immutable in .NET - once you've got a string object somehow, that string will always have the same contents. You …

  8. Pandas replace and downcasting deprecation since version 2.2.0

    Nov 26, 2024 · Pandas replace and downcasting deprecation since version 2.2.0 Ask Question Asked 1 year, 3 months ago Modified 1 year, 3 months ago

  9. replace " in vb.net - Stack Overflow

    May 26, 2020 · That'll do the replace, but being a fragment seems to give the impression it will happen in place. It won't, a new string is returned (I'm sure you know that, just saying I'd make it clear in the …

  10. replace - Case-insensitive PowerShell replacement - Stack Overflow

    The String.Replace method has two different overloads that allows a case-insensitive replacement: Replace (String, String, StringComparison) Replace (String, String, Boolean, CultureInfo) For the first …