About 3,490,000 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. How to replace part of a string using regex - Stack Overflow

    Apr 28, 2017 · 22 You may use a regex that will match the first [....] followed with [ and capture that part into a group (that you will be able to refer to via a backreference), and then match 1+ …

  3. pandas applying regex to replace values - Stack Overflow

    Mar 23, 2014 · I have read some pricing data into a pandas dataframe the values appear as: $40,000* $40000 conditions attached I want to strip it down to just the numeric values. I know I …

  4. python - Case insensitive replace - Stack Overflow

    May 28, 2009 · What's the easiest way to do a case-insensitive string replacement in Python?

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

    May 26, 2021 · Prettier ask me to replace ⏎↹↹ with · Asked 4 years, 1 month ago Modified 1 year ago Viewed 65k times

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

    Feb 18, 2022 · 157 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 …

  7. Visual Studio Code Search and Replace with Regular Expressions

    Apr 24, 2017 · I want to use "Search And Replace" in Visual Studio Code to change every instance of <h1>content</h1> to #### content within a document using a Regular …

  8. Find and Replace Only Selected Cells - Microsoft Community

    Jun 23, 2025 · Excel 2016: When attempting to find and replace contents of selected cells, the replace dialog only has the option to replace one single cell or the entire sheet. I only want to …

  9. Javascript replace method, replace with "$1" - Stack Overflow

    Dec 25, 2016 · The first call to the replace method is what puzzles me, I don't understand where the "$1" value comes from or what it means. I would think that the call should replace the …

  10. Powershell -replace when replacement string contains

    Feb 5, 2020 · PowerShell's -replace operator: uses a regex (regular expression) as the search (1st) operand. If you want t o use a search string verbatim, you must escape it: …