8 Einträge, 1 Seite |
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
@letters = ("a", "b", "c", "d",
"e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w",
"x", "y", "z");
@ziffern = ("1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "a", "b", "c", "d",
"e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w",
"x", "y", "z");
$siz = 7;
for $n (1..100) {
for ($i=0; $i<$siz; $i++) {
if ($i==0 or $i==1 or $i==2) {
$wort .= $letters[rand(26)]
} else {
$wort .=$ziffern[rand(36)];
}
}
print $wort . "\n";
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$anzahl = 100;
$wortlaenge = 7;
for (1..$anzahl) {
my $wort;
for $i (1..$wortlaenge) {
if ($i < 4) {
$wort .= chr ((int rand 26) + 97);
} else {
$wort .= int rand 10;
}
}
print $wort . "\n";
}
1
2
3
4
5
6
@letters = ("a", "b", "c", "d",
"e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w",
"x", "y", "z");
@ziffern = ("1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "a", "b", "c", "d",
"e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w",
"x", "y", "z");
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
my @letters = ("a" .. "z");
my @ziffern = (1..9, 0, "a" .. "z");
$anzahl = 100;
$wortlaenge = 7;
for (1..$anzahl) {
my $wort;
for $i (1..$wortlaenge) {
if ($i < 4) {
$wort .= $letters[rand 27];
} else {
$wort .= $ziffern[rand 37];
}
}
print $wort . "\n";
}
my @ziffern = (0..9, "a".."z");
8 Einträge, 1 Seite |