vote up 1 vote down star
2

Let's say I have a string holding a mess of text and (x)HTML tags. I want to remove all instances of a given tag (and any attributes of that tag), leaving all other tags and text along. What's the best Regex to get this done?

Edited to add: Oh, I appreciate that using a Regex for this particular issue is not the best solution. However, for the sake of discussion can we assume that that particular technical decision was made a few levels over my pay grade? ;)

flag

59% accept rate

10 Answers

vote up 12 vote down check

Attempting to parse HTML with regular expressions is generally an extremely bad idea. Use a parser instead, there should be one available for your chosen language.

You might be able to get away with something like this:

</?tag[^>]*?>

But it depends on exactly what you're doing. For example, that won't remove the tag's content, and it may leave your HTML in an invalid state, depending on which tag you're trying to remove. It also copes badly with invalid HTML (and there's a lot of that about).

Use a parser instead :)

link|flag
Dangit, don't run the fun for all the people crafting regexes with your obviously correct answer! – Will Sep 22 '08 at 18:00
You need to make that * non-greedy (*?) or you'll lose everything from the first matched tag to the last greater-than symbol in your string. – Prestaul Sep 22 '08 at 19:45
Yes, you're absolutely right about that, well spotted :) – Dan Sep 22 '08 at 20:01
vote up 6 vote down

I think there is some serious anti-regex bigotry happening here. There are lots of times when you may want to strip a particular tag out of some markup when it doesn't make sense to use a full blown parser.

Of course there are times when a parser might be the best option, but if you are looking for a regex then:

<script[^>]*?>[\s\S]*?<\/script>

That would remove script tags and their contents. Make sure that you use case-insensitive matching.

If you don't want to remove the contents of the tag then you can use:

<\/?script[^>]*?>

An example of usage in javascript would be:

function stripScripts(markup) {
  return markup.replace(/<script[^>]*?>[\s\S]*?<\/script>/gi, '');
}

var safeText = stripScripts(textarea.value);
link|flag
Hey nothing wrong with regular expressions, it's just that you can't write an HTML parser in one (actually, I think you can in Perl (perl has some extra regex stuff), but bagsy not maintaining it!). – Dan Sep 22 '08 at 18:28
I agree with you. Sometime you want to act only on a given page, with well known structure, or HTML generated by a tool, with well defined output. When the code is predictable, using a regex might make sense. Using them to parse any HTML typed by humans is more risky! ;-) – PhiLho Oct 17 '08 at 16:01
vote up 0 vote down

I think it might be Raymond Chen (blogs.msdn.com/oldnewthing) that I'm paraphrasing (badly!) here... But, you want a Regular Expression? "Now you have two problems" ... :=)

If the string is well-formed (X)HTML, could you load it up into a parser (HTML/XML) and use this to remove any nodes of the offending variety? If it's not well-formed, then it becomes a bit more tricky, but, I suspect that a RegEx isn't the best way to go about this...

link|flag
Raymond Chen did use that statement, but he was quoting Jaime Zawinski. – toast Sep 22 '08 at 18:05
vote up 0 vote down

There are just TOO many ways a single tag can appear, not to mention encodings, variants, etc.
I strongly suggest you rethink this approach.... you really shouldnt have to be handling HTML directly, anyway.

link|flag
vote up 0 vote down

Off the top of my head, I'd say this will get you started in the right direction.

s/<TAG[^>]*>([^<]*)</TAG[^>]*>/\1

Basically find the starting tag, any text in between the tags, and then the ending tag. Replace the whole thing with whatever was in between the tags.

link|flag
vote up 0 vote down

Corrected answer:

</?TAG\b[^>]*?>

Because Dans answer would remove <br />, but you want only <b>

link|flag
vote up 0 vote down

Here's a regex I wrote for this purpose, it works in a few more situations:

</?(?(?=b|img|a|script)notag|[a-zA-Z0-9]+)(?:\s[a-zA-Z0-9\-]+=?(?:(["",']?).*?\1?)?)*\s*/?>
link|flag
vote up 0 vote down

If it's XHTML why not use XSLT...?

link|flag
vote up 0 vote down

This is an interesting topic. One that i have had some trouble with.. primarily becuase im not a programmer or anything of that kind.. I tried some of the examples that pertain to my needs, but was not able to resolve my issue.. simple for someone that knows this.. no so simple for me...

I have a bunch of text/html documents that need formating.. there is no consitency in the document.. example...

Some Title
Some text for paragraph1

Some Text for Paragraph 2 with a period at the end indiucating an end of paragraph.


Paragraph3 with no period on the end of the line



Another Paragraph this time with a comma at the end,

another Paragraph that shoudl have been part of the last paragraph based on a comma being present in the last paragraph + this time with a semi-colon at the end:

1 - Bullet list with item one
2 - Bullet item 2
3 - Bullet item 3

Some new paragraph

1) - Bullet list with item one
2) - Bullet item 2
3) - Bullet item 3

Some new paragraph

1. - Bullet list with item one
2. - Bullet item 2
3. - Bullet item 3
Some new paragraph

a. - Bullet list with item one
b. - Bullet item 2
c. - Bullet item 3

What i'm looking for help with is how to globally format this inconsistant document to read as follows

Some Title

Some text for paragraph1

Some Text for Paragraph 2 with a period at the end indiucating an end of paragraph.

Paragraph3 with no period on the end of the line

Another Paragraph this time with a comma at the end, another Paragraph that should have been part of the last paragraph based on a comma being present in the last paragraph + this time with a semi-colon at the end:

5e81a3075eca4f552f8352a93bc3dae8

Some new paragraph

  1. Bullet list with item one
  2. Bullet item 2
  3. Bullet item 3

Some new paragraph

  1. Bullet list with item one
  2. Bullet item 2
  3. Bullet item 3

Some new paragraph

  • a. - Bullet list with item one
  • b. - Bullet item 2
  • c. - Bullet item 3
  • any help would be appreciated... a single line of regex that i can do a global search and replace if doable would be good

    FYI i have searched google but there is no example sclose to this that help.. however i did find the following resource infomative.. http://regexlib.com/CheatSheet.aspx

    link|flag
    vote up 0 vote down

    While using regexes for parsing HTML is generally frowned upon or looked down on, you almost certainly don't want to write your own parser.

    You could however use some inbuilt or library functions to achieve what you need.

    • JavaScript has getElementsByTagName and getElementById, not to mention jQuery.
    • PHP has the DOM extension.
    • Python has the awesome Beautiful Soup
    • ...and many more.
    link|flag

    Your Answer

    Get an OpenID
    or

    Not the answer you're looking for? Browse other questions tagged or ask your own question.