Code:
str = '<br><br />A<br />B'
print(re.sub(r'<br.*?>\w$', '', str))
It is expected to return <br><br />A, but it returns an empty string ''!
Any suggestion?
|
Code:
It is expected to return Any suggestion? | ||||
|
feedback
|
|
Greediness works from left to right, but not otherwise. It basically means "don't match unless you failed to match". Here's what's going on:
Luckily, there's an easy solution: By replacing | |||
|
feedback
|
|
The non-greediness won't start later on like that. It matches the first To make it work the way you wanted, use
but usually, it is not recommended to use regex to parse HTML, as some attribute's value can have | |||
|
feedback
|
stras a variable name. – Chris Morgan Nov 25 '10 at 6:03