#!/usr/bin/perl
my $string = "Bok[Free-DC.org]";
unless ($string=~/\[(.*?)\]/) { die "Regex Failed!\n\n"; }
print "Regex returned '$1'\n\n";
Holy bat-lips batman... :Q
#!/usr/bin/perl
my $string = "Bok[Free-DC.org]";
unless ($string=~/\[(.*?)\]/) { die "Regex Failed!\n\n"; }
print "Regex returned '$1'\n\n";
Originally posted by: GeoffS
As an update... I've got the table structure for the daily user and daily user totals done. I need to work out an algorithm to extract team from the user name (the one I have in mind is ugly...), and then I just need to work on the php scripts that output the html... few days tops I figure!
Geoff
:beer::beer::beer::beer::beer::beer:I should have pages that you guys can hit within a couple of days
Originally posted by: Bok7575
#!/usr/bin/perl
my $string = "Bok[Free-DC.org]";
unless ($string=~/\[(.*?)\]/) { die "Regex Failed!\n\n"; }
print "Regex returned '$1'\n\n";
