Hey everybody,
This is a quickly cooked up script, but I am having some difficulty due to unfamiliarity with regexes and Perl.
The script is supposed to read in an HTML file. There is a place in the file (by itself) where I have a bunch of <div>s. I want to remove every third of them -- they are grouped in fours.
My script below won't compile, let alone run.
#!/usr/bin/perl
use warnings;
use strict;
&remove();
sub remove {
my $input = $ARGV[0];
my $output = $ARGV[1];
open INPUT, $input or die "couldn't open file $input: $!\n";
open OUTPUT, ">$output" or die "couldn't open file $output: $!\n";
my @file = <INPUT>;
foreach (@file) {
my $int = 0;
if ($_ =~ '<div class="cell">') {
$int++;
{ // this brace was the wrong way
if ($int % 4 == 3) {
$_ =~ '/s\<div class="cell">\+.*<\/div>/;/g';
}
}
print OUTPUT @file;
}
Thanks for all your help. I know it is wrong to parse with a regex, but I just want this one to work.
Postmortem: The problem is almost solved. And I shame those who told me that a regex is not good -- I knew that to begin with. But then again, I wanted something fast and had programmed the XSLT that produced it. In this case I didn't have the source to run it again, otherwise I would program it into the XSLT.
