Thread Dateiinhalt von X bis Y löschen (4 answers)
Opened by STK at 2011-12-05 09:22

moritz
 2011-12-05 09:28
#154653 #154653
User since
2007-05-11
923 Artikel
HausmeisterIn
[Homepage]
user image
CPAN:Mojo::DOM to the rescue:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use 5.010;
use Mojo::DOM;

my $dom = Mojo::DOM->new->parse(<<XML);
<foo>
<inhalt name="alpha">
bis Tag
</inhalt>
<inhalt name="alpha">
bis Tag
</inhalt>
</foo>
XML

$dom->find('inhalt')->each(sub { $_->replace('') });
say $dom;

View full thread Dateiinhalt von X bis Y löschen