s = re.sub(r"<style.*?</style>", "", s)
Isn't this code supposed to remove styles in the s string? Why does it not work? I am trying to remove the following code:
<style type="text/css">
body { ... }
</style>
Any suggestion?
|
|
No it's the re.DOTALL flag that is necessary ! re.DOTALL http://docs.python.org/library/re.html#re.DOTALL EditIn some cases, it may be necessary to have a dot matching all characters (newlines comprised) in a region of a string, and to have a dot matching only non newlines characters in another region of the sting. But using flag re.DOTALL doesn't allow this. In this case, it's usefull to know the following trick: using [\s\S] to symbolize every character
result
|
||||
|