bsb,
This requires the string to be stored in the lexical $string, but you were looking for something perverse:
#!/usr/bin/perl use strict; use warnings; package Random_Char; use PadWalker 'peek_my'; sub TIESCALAR { bless {}, $_[0] } sub STORE { return 1 } sub FETCH {my @c=keys%{{map{$_=>undef}split//,${peek_my(1)->{'$string' +}}}};return $c[rand @c];} package main; tie my $rand_char, "Random_Char"; my $string = 'One bright day in the middle of the night'; my ($char) = $string =~ /($rand_char)/; print "$char\n";
Cheers - L~R

Update:
Here is another that is a bit more fragile that doesn't use modules.
It works on the form ($char) =~ "some string" =~ /($rand_char)/;

#!/usr/bin/perl use strict; use warnings; package Random_Char; sub TIESCALAR { bless {}, $_[0] } sub STORE { return 1 } sub FETCH {open(I,$0);my $l;while(<I>){$l=$_ and last if$.==(caller)[2 +]} $l =~ s/^.*=\s*(["'])(.*)\1\s*=~.*$/$2/;my @c=keys%{{ map{$_=>undef}split//,$l}};return $c[rand @c]; } package main; tie my $rand_char, "Random_Char"; my ($char) = 'One bright day in the middle of the night' =~ /($rand_ch +ar)/; print "$char\n";


In reply to Re: Pick a random string char with a regex by Limbic~Region
in thread Pick a random string char with a regex by bsb

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.