|< 1 2 >| | 18 Einträge, 2 Seiten |
$inhalt =~ s/\<.+?\>//g;
$inhalt =~ s/\<.+?\>//g;
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use strict;
use warnings;
my @strings = ("das ist ein test","<font coler=blue>das ist ein</font>test");
for my $string(@strings){
$string =~ s!(<.*?>)!$` ne ''? " " : ''!eg;
print $string,"\n";
}
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";
}
|< 1 2 >| | 18 Einträge, 2 Seiten |