A
Anatase
if(!($input2 =~ /[a-zA-Z]{4,12}/))
{
print "try the input again\n";
Usernamesub();
}
aaa - does not match so steps in
aaaa - match so steps past
aaaaaaaaaaaaa - 13+ should step in - but instead steps past
I'm using active states perl 5.8 it seems.
{
print "try the input again\n";
Usernamesub();
}
aaa - does not match so steps in
aaaa - match so steps past
aaaaaaaaaaaaa - 13+ should step in - but instead steps past
I'm using active states perl 5.8 it seems.