Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w # # Script for creating a cryptogram out of plaintext # By: Rob Hudson <elihu@atdot.org> # Created: 22 Jan 2000 # Updated: 07 Feb 2000 : Changed to using FYShuffle # Updated: 15 Apr 2000 : Added fortune support use Text::Wrap; my $text = ""; my @lines; my $alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; ## Set up fortune locale and which files to exclude my $fortune_dir = "/usr/share/games/fortunes/"; my $exclude = "ascii-art|translate-me"; if (@ARGV && $ARGV[0] ne '-f') { my $inFile = $ARGV[0] if ($ARGV[0] ne "") or die "No file specified\ +n"; # Read it, Scrunch it, Up it. open IN, $inFile or die "Can't open input file: $!"; while (<IN>) { s/[\s]+/ /g; $text .= $_; } close (IN); print "\nHere is your quote:\n\n"; } else { opendir FORTUNE_DIR, $fortune_dir or die "Can't read directory $fort +une_dir: $!"; my @files = grep !/^\.|.dat$|$exclude/, readdir FORTUNE_DIR; # Pick a random file from which to get the fortune my $fortune_file = $files[rand @files]; # This is inefficient from a memory usage standpoint, but it's much +easier $/ = '%'; open FILE, "$fortune_dir$fortune_file" or die "Can't open file: $!"; while (<FILE>) { push @lines, $_; } close (FILE); $text = $lines[rand @lines]; $text =~ s/%$//g; # remove the % $text =~ s/[\s]+/ /g; # make spacing uniform $text =~ s/^\s+//g; # remove whitespace at beginning print "\nQuote taken from fortune file '" . $fortune_file . "':\n\n" +; } ## Start cryptogram processing $text = uc($text); # print wrap ("","", $text), "\n\n"; ## Build random alphabet string, not allowing repeat letters my @alpha = split //, $alpha; my $substit = join '', fisher_yates_shuffle(\@alpha); ## Have to use an eval since $vars don't get interpreted inside a tr c +all. eval "\$text =~ tr/$alpha/$substit/"; print wrap ("","", $text), "\n\n"; ## Taken from perlfaq4 (thanks btrott) sub fisher_yates_shuffle { my $array = shift; for (my $i = @$array; --$i; ) { my $j = int rand ($i+1); next if $i == $j; @$array[$i, $j] = @$array[$j, $i]; } return join '', @$array; }

In reply to Cryptogram Generator by Elihu

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-19 23:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found