Thread Lesen log file (6 answers)
Opened by lddzjwwy at 2013-05-27 10:26

lddzjwwy
 2013-05-27 10:26
#167838 #167838
User since
2013-04-15
6 Artikel
BenutzerIn
[default_avatar]
Hallo zusammen,

nun möchte ich einen log file lesen und alle Zeilen zwischen einer <xxx; und der nächsten <xxx; ausdrucken. Aber es gibt noch <leere Zeile zwischen den beiden <xxx;, deswegen werden nur die Zeilen zwischen einer <xxx; und der <leere Zeile ausgedrükt. Wie kann ich das Problem lösen? Folgend ist der Teil meiner Code:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
while (<>)
{
# remove trailing whitespaces:
s/\s+$//;
# Remove CR and LF
s/[\r\n]//g;

if ((m/^<(.*)/) || (m/^\S+ <(.*)/))
{
# store the previous command:
if ($command ne "")
{
print "Adding: $command\n";
$response{$command} = $resp;
$ordered{$command} = $result if $ordered_received;
$resp = "";
$result = "";
$ordered_received = 0;
$command = "";
}

# a new command line:
$command = $1;
if ($command =~ /;/)
{
$command = uc($command) unless $case_sensitive;
}
}
elsif ($ordered_received)
{
# collect the result lines
$result .= "$_\r\n";
}
else
{
# collect the response lines
$resp .= "$_\r\n";
}
}


Ich bedanke mich für eure freundliche Hilfe.

MfG
Wei

View full thread Lesen log file