Danke könntest du noch etwas zu deinen Code sagen folgendes ist mir Unklar :
s/\*/.*/g; /g ersetzt ein Zeichen?
if('Test' =~ /^$_$/); was bedeutet hier das $_$ ?
Gruß Patrick
EDIT :
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
chop $message;
my $matching = "false";
my $datei = "aop.cfg";
if(-e $datei)
{
open(INPUTFILE,$datei);
@fileContent=<INPUTFILE>;
close(INPUTFILE);
foreach my $aktuelleZeile (@fileContent) {
if($aktuelleZeile =~ /"(.*)","(.*)"/) {
print "$1 - $2 : $message - $hostmask\n";
if($1 eq $message && $2 eq $hostmask>) {
$matching = "true";
print "Match!";
} else {
if($matching ne "true") {
$matching = "false";
}
}
}
}
}
else
{
print "\n*** Error cant Read file $datei!\n";
}
aop.cfg:
"test","cooldie!~cooldie@blablabla"
Mein aktueller Code ohne Wildcards hab keine Ahnung wie ich das da intergrieren muss\n\n
<!--EDIT|cooldie|1121873011-->