I need a Regular Expressions to get the text within 2 tags.
Lets say I want an array returned containing any text within > and
> and
Perl regexp would be
$string =~ /color=rgb\((\d+),(\d+),(\d+)\)/; @array = ($1,$2,$3);
But you probably need more information that this.