Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for($count = 0; $count < 4; $count++) {
$data[$count] = chr(int(rand(26))+65);
}
for($count = 4; $count < 6; $count++) {
$data[$count] = int(rand(10));
}
my @char_set = ('a'..'k', 'm'..'n', 'p'..'z');
my $random = '';
$random .= $char_set[rand(@char_set)] for (1..7);
print $random;
print "give me length: ";
$length = <STDIN>;
chomp $length;
@chars = (97..122);
print "Randon string with $length characters: ";
print chr $chars[int(rand(27))] for (1..$length);
print "\n";