Corrected regular expression
This commit is contained in:
parent
e8dc0af426
commit
4240fb77aa
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ while (my $line = <STDIN>) {
|
|||
$line =~ s/^\s*//; $line =~ s/\s*$//;
|
||||
|
||||
next unless $line =~
|
||||
/^\s*(\S+\:.+)\s+[\(\d].+\s+\(?\s*([\d\.\,])+\s*\)?\s*$/;
|
||||
/^\s*(\S+\:.+)\s+[\(\d].+\s+\(?\s*([\d\.\,]+)\s*\)?\s*$/;
|
||||
my($acct, $value) = ($1, $2);
|
||||
$acct =~ s/^\s*//; $acct =~ s/\s*$//;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue