About 942,000 results
Open links in new tab
  1. Replace multiple characters in one replace call - Stack Overflow

    159 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 …

  2. How to replace all occurrences of a character in string?

    What is the effective way to replace all occurrences of a character with another character in std::string?

  3. Replacing blank values (white space) with NaN in pandas

    I want to find all values in a Pandas dataframe that contain whitespace (any arbitrary amount) and replace those values with NaNs. Any ideas how this can be improved? Basically I want to turn …

  4. sql - Quickest/Easiest way to use Search/Replace through all …

    Actually, this is a 2 part question. Is it possible to use some sort of functionality to search through every stored procedure for a string and possibly replace it, like a standard Find/Replace fun...

  5. How to break lines at a specific character in Notepad++?

    Click Ctrl + h or Search -> Replace on the top menu Under the Search Mode group, select Regular expression In the Find what text field, type ],\s* In the Replace with text field, type ],\n …

  6. Replace part of a string with another string - Stack Overflow

    There's a function to find a substring within a string (find), and a function to replace a particular range in a string with another string (replace), so you can combine those to get the effect you …

  7. Replace \n with actual new line in Sublime Text - Stack Overflow

    How can I replace \\n in Sublime Text with real in-editor displayed new line so: foo\\nbar becomes: foo bar in the editor when I view the file in it.

  8. How can I replace every occurrence of a String in a file with ...

    Using PowerShell, I want to replace all exact occurrences of [MYID] in a given file with MyValue. What is the easiest way to do so?

  9. How to replace text in a string column of a Pandas dataframe?

    For anyone else arriving here from Google search on how to do a string replacement on all columns (for example, if one has multiple columns like the OP's 'range' column): Pandas has a …

  10. How to replace a string in a SQL Server Table Column

    May 2, 2009 · I have a table (SQL Sever) which references paths (UNC or otherwise), but now the path is going to change. In the path column, I have many records and I need to change just a …