About 1,010,000 results
Open links in new tab
  1. Newest 'replace' Questions - Stack Overflow

    [replace] Replacing is the action of searching a string (the haystack) for a sub-string (the needle) and replacing it with a different string. Sign up to watch this tag and see more personalized …

  2. How can I perform a str_replace in JavaScript, replacing text in ...

    I want to use str_replace or its similar alternative to replace some text in JavaScript. var text = "this is some sample text that i want to replace"; var new_text = …

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

  4. git - How do I delete a commit from a branch? - Stack Overflow

    I think this is not a duplicate of Git undo last commit as it asks how to delete any commit from a branch. I also think non of the answers actually address this question. They all rewind the last …

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

  7. python .replace () regex - Stack Overflow

    It will replace non-everlaping instances of pattern by the text passed as string. If you need to analyze the match to extract information about specific group captures, for instance, you can …

  8. sql - replace multiple values at the same time - in order to convert …

    Apr 22, 2014 · replace multiple values at the same time - in order to convert a string to a number Asked 11 years, 6 months ago Modified 3 years, 11 months ago Viewed 220k times

  9. r - Replace specific characters within strings - Stack Overflow

    I would like to remove specific characters from strings within a vector, similar to the Find and Replace feature in Excel. Here are the data I start with: group <- data.frame(c("12357e", "125...

  10. python - rreplace - How to replace the last occurrence of an …

    Is there a quick way in Python to replace strings but, instead of starting from the beginning as replace does, starting from the end? For example: >>> def rreplace (old, new, occurrence) &...