About 50 results
Open links in new tab
  1. 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 pass a function to …

  2. regex - Python string.replace regular expression - Stack Overflow

    I am using a line replace function posted previously to replace the line which uses Python's string.replace(pattern, sub). The regular expression that I'm using works for instance in vim but …

  3. python - How to input a regex in string.replace? - Stack Overflow

    How to input a regex in string.replace? Asked 14 years, 11 months ago Modified 2 years, 2 months ago Viewed 579k times

  4. python - How can I do multiple substitutions using regex ... - Stack ...

    The answer proposed by @nhahtdh is valid, but I would argue less pythonic than the canonical example, which uses code less opaque than his regex manipulations and takes advantage of python's built-in …

  5. Regex replace (in Python) - a simpler way? - Stack Overflow

    Regex replace (in Python) - a simpler way? Asked 17 years, 1 month ago Modified 12 years, 11 months ago Viewed 108k times

  6. How can I replace all occurrences of a substring using regex?

    Oct 12, 2016 · How can I replace all occurrences of a substring using regex? Ask Question Asked 9 years, 5 months ago Modified 4 years, 1 month ago

  7. regex - How to replace only part of the match with python re.sub ...

    10 You can do it by excluding the parts from replacing. I mean, you can say to the regex module; "match with this pattern, but replace a piece of it".

  8. Python replace string pattern with output of function

    Sep 26, 2012 · I have a string in Python, say The quick @red fox jumps over the @lame brown dog. I'm trying to replace each of the words that begin with @ with the output of a function that takes the word …

  9. python - Replace all occurrences that match regular expression - Stack ...

    Jul 2, 2016 · re.sub() (docs for Python 2 and Python 3) does replace all matches it finds, but your use of .* may have caused the regex to match too much (even other occurences of .00. etc.).

  10. How to replace string using regular expression in Python

    Mar 21, 2019 · This question is similar to: How to input a regex in string.replace?. If you believe it’s different, please edit the question, make it clear how it’s different and/or how the answers on that …