deleting HTML tag...but not everyone

From: Francesco Del Vecchio (f_delvecchio_at_yahoo.com)
Date: 07/29/04


Date: Thu, 29 Jul 2004 05:52:48 -0700 (PDT)
To: beginners@perl.org

Hi guys,

I have a problem with a Regular expression.
I have to delete from a text all HTML tags but not the DIV one (keeping all the parameters in the
tag).

I've done this:

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#!/usr/bin/perl
use strict;
my $test=<<EOS;
<html><head><meta content="MSHTML 6.00.2800.1400" name="GENERATOR">
</head><body><font face="Courier New" size=2>
=========SUPER SAVING========= <br>
-product one <br>
-product two <br><D>
-product three <br><dIV section=true>
============================== <Br></DIV>
<br><br></font></body> </html>
EOS
$test=~s/<br>/\n/ig;
$test=~s/<^[DIV](.*?)>//ig;
print $test;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
with this I can hav ALMOST what I want.
I delete all HTML tags but <DIV> one but I also keep a <D> tag and I delete the </DIV> tag that I
would like to keep

The problem is in the ^[DIV] part of my regex....the "DIV" string is used as list of chars and not
as whole world. Is there a way to archieve my goal?

tnx in advance
Francesco

                
__________________________________
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail



Relevant Pages

  • Re: Get data between HTML Tags
    ... I forgot to mention my host is using PHP 4.3.10 ... > I'm looking to get the baseball score between the html tags on yahoo and ...
    (comp.lang.php)
  • Re: Get data between HTML Tags
    ... I forgot to mention my host is using PHP 4.3.10 ... > I'm looking to get the baseball score between the html tags on yahoo and ...
    (php.general)
  • Re: Get data between HTML Tags
    ... I forgot to mention my host is using PHP 4.3.10 ... > I'm looking to get the baseball score between the html tags on yahoo and ...
    (alt.php)
  • Get data between HTML Tags
    ... I'm looking to get the baseball score between the html tags on yahoo and ... Prev by Date: ...
    (php.general)
  • Get data between HTML Tags
    ... I'm looking to get the baseball score between the html tags on yahoo and ... Prev by Date: ...
    (alt.php)