On Mon, Dec 24, 2001 at 01:40:35AM -0500, Fred Sahakian wrote:
> One of the arrays contains HTML paragraph symbols ( <P> ) which I do
> not want to appear in the e-mail that is sent out.  Any ideas?

I'm assuming you mean array literally, in which case all you need is:

map { $_ =~ s/<p>//ig } @array; # Remove <(p|P)> for each array element.

Hope this helps.  Merry Christmas, list!

- ~C.
-- 
$a="printf.net"; Chris Ball | chris@void.$a | www.$a | finger: chris@$a
As to luck, there's the old miners' proverb: Gold is where you find it.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to