if ($data =~ /\!/ig)
{
if ($data =~ /\!about/ig)
{
print "1";
}
}
The above code is acting very weird;
The idea is simple, to match if the string $data contains a ! char, if it is, match a command: !about
But when the code is running, the first match is successful, but the...