Help for this page

Select Code to Download


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