About 3,420,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. Replace multiple characters in one replace call - Stack Overflow

    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 each match. All you need is an …

  3. pandas applying regex to replace values - Stack Overflow

    Mar 23, 2014 · The rule2 = (lambda... is used as a callable, therefore in your obj.str.replace the regex is passed the match object, i.e. your dictionary key to lookup the value pair to replace.

  4. Why is there no find and replace (ALL) option in Onenote?

    May 23, 2024 · If you've got a lot of replacements on a single page, copy this page to Word, use the "find and replace all" feature there, and then paste back into OneNote. Here are the steps …

  5. python - Case insensitive replace - Stack Overflow

    May 28, 2009 · Possibly the fastest method for a case-insensitive replace, tested against both using an arrayed string and using regex.

  6. How can I automatically replace blank spaces in a range?

    Aug 20, 2023 · How can I automatically replace blank spaces in a range? I have empty cells in a range of values and I would like to not have to go in individually and fill the cells with 0. Is there …

  7. python .replace () regex - Stack Overflow

    119 In order to replace text using regular expression use the re.sub function: sub (pattern, repl, string [, count, flags]) It will replace non-everlaping instances of pattern by the text passed as …

  8. Why do i need to add /g when using string replace in Javascript?

    Jul 30, 2009 · This means that your replace will replace all copies of the matched string with the replacement string you provide. A list of useful modifiers: g - Global replace. Replace all …

  9. Find and Replace Only Selected Cells - Microsoft Community

    2 days ago · 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.

  10. sql - SELECT with a Replace () - Stack Overflow

    Oct 20, 2016 · I have a table of names and addresses, which includes a postcode column. I want to strip the spaces from the postcodes and select any that match a particular pattern. I'm trying …