Is there an regular expression to find, for example, ">ab" but do not include ">" in the result?
I want to replace some strings using re.sub, and I want to find strings starting with ">" without remove the ">".
|
|
|
You can use a back reference in sub:
Outputs:
I believe this accomplishes what you actually want when you say "I want to replace some strings using |
|||
|
|
|
You want a positive lookbehind assertion. See the docs.
It needs to be a fixed length expression, it can't be a variable number of characters. Basically, do
So, an example:
|
|||||||||
|
|
if you want to avoid using the re module you can also use the startswith() string method.
|
|||
|