Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Randomise a string of letters

by Rhose (Priest)
on Jan 15, 2003 at 14:35 UTC ( [id://227152]=note: print w/replies, xml ) Need Help??


in reply to Randomise a string of letters

Using the "Randomizing an Array" example from the Perl Cookbook, I threw together the following code. Does this help?
#!/usr/bin/perl -w use strict; my $gStr='This is my string'; my @gStrArr=split('',$gStr); sub fisher_yates_shuffle { my $array = shift; my $i; for ($i = @$array; --$i;) { my $j = int rand ($i+1); next if $i == $j; @$array[$i,$j] = @$array[$j,$i]; } } fisher_yates_shuffle(\@gStrArr); $gStr=join('',@gStrArr); print $gStr,"\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://227152]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (8)
As of 2024-04-18 17:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found