4 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
# !perl
use strict;
use warnings;
my $dataxml = 'z:\tla\scripts\emmaparser\index.xml';
my $xmlfile;
open($xmlfile,'<',$dataxml) or die $!;
print $xmlfile;
close ($xmlfile);
Quotezurueck ... kann ich das irgendwie machen das er das xml file zurueck gibt als ob ich es in notepad oeffne ?GLOB(0x225678)
@lines = <$xmlfile>;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# !perl
use strict;
use warnings;
my $dataxml = 'z:\tla\scripts\emmaparser\index.xml';
my $xmlfile;
open($xmlfile,'<',$dataxml) or die $!;
while(my $line = <$xmlfile>){
print $line;
}
close ($xmlfile);
4 Einträge, 1 Seite |