i have this html code:
<p style="padding:0px;">
<strong style="padding:0;margin:0;">hello</strong>
</p>
but it should become (for all possible html tags):
<p>
<strong>hello</strong>
</p>
|
i have this html code:
but it should become (for all possible html tags):
|
|||||||||||||
|
|
Adapted from my answer on a similar question
The RegExp broken down:
Add some quoting, and use the replacement text Please Note This isn't necessarily going to work on ALL input, as the Anti-HTML + RegExp will tell you. There are a few fallbacks, most notably |
|||||||||||||||
|
|
Here is how to do it with native DOM:
If you want to remove all possible attributes from all possible tags, do
|
|||||
|
|
I would avoid using regex as HTML is not a regular language and instead use a html parser like Simple HTML DOM You can get a list of attributes that the object has by using
|
||||
|
|
Regex's are too fragile for HTML parsing. In your example, the following would strip out your attributes:
Update Make to second capture optional and do not strip '/' from closing tags:
Demonstrate this regular expression works:
|
||||
|
Hope this helps. It may not be the fastest way to do it, especially for large blocks of html. If anyone has any suggestions as to make this faster, let me know.
|
|||
|
|
|
To do SPECIFICALLY what andufo wants, it's simply:
That is, he wants to strip anything but the tag name out of the opening tag. It won't work for self-closing tags of course. |
|||
|
|
|
|||
|
|