#!/usr/local/bin/perl use strict; use warnings; use HTML::Strip; main(); sub main{ my $xml = qq{ Self-Archiving E-mail Messages in Outlook The following e-mail self-archiving create an Archive folder/.pst file. See Outlook 2003 .pst file Management for instruction your messages. Select your Files (This refers to your primary... }; my $hs = HTML::Strip->new(); my $text = $hs->parse($xml); print $text; }