Perl Regular Expressions
im trying to go through an array, and take out all of the <br> or <BR> in each string of the array, this is what i am doing right now, but it does not work...
for ($i=0; $i <= $#fields_add - 1; $i++){
$fields_add[$i] =~ s/<BR>/ /;
$fields_add[$i] =~ s/<br>/ /;
}
|