Thread regulärer ausdruck richtig? (17 answers)
Opened by Gast at 2006-11-29 12:26

renee
 2006-11-29 13:28
#72057 #72057
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Mit HTML::Strip funktioniert das klasse!
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;
use Data::Dumper;
use HTML::Strip;

my @strings = ("das ist ein test","<font coler=blue>das ist ein</font>test");

my $hs = HTML::Strip->new();
for my $string(@strings){
my $text = $hs->parse($string);
$hs->eof;
print $text,"\n";
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread regulärer ausdruck richtig?