#!c:/perl/bin/Perl.exe print "Content-type:  text/html; charset=iso-8859-1\n\n"; use LWP::Simple; $content = get("http://www.pm-nachterlebniswelt.de/Programm");     die "Couldn't get it!" unless defined $content;      my ($var) = $content =~ m!(.*?).\-.(.*?)                                                                                (.*?)                           !s;               print"$1 ..... $2 .....$3
";