- or download this
$other = "x!4Y";
$password = $PATTERN; # $PATTERN is aHINTbcd
...
$password =~ s/b/!/;
$password =~ s/c/4/;
$password =~ s/d/Y/;
- or download this
$other = "x!4Y";
$password = $PATTERN; # $PATTERN is aHINTbcd
$password =~ tr/abcd/$other/;
- or download this
$password = substr($other, 0, 1).$HINT.substr($other, 1, 3);
- or download this
$password = join('', substr($other, 0, 1), $HINT, substr($other, 1,
+3));