- or download this
my $string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
my ($random) = $string =~ m/(??{'.'x rand length $string })(.)/s;
print $random, "\n";
- or download this
my $string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
my( $random ) = $string =~ m/^(??{ '.' x rand length $_ })(.)/s;
print "$random\n";
- or download this
my $string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
my ($random) = $string =~ m/^
...
(.)
/sx;
print "$random\n";