in reply to Re: Generating a random string of chars, easily.
in thread Generating a random string of chars, easily.

OKay, I have another challenge then.
What about doing the same without using an array initialized with the chars we wanna pick ( ie (a..z) ? Would there be a solution?
  • Comment on Re: Re: Generating a random string of chars, easily.

Replies are listed 'Best First'.
Re: Re: Re: Generating a random string of chars, easily.
by BrowserUk (Patriarch) on Nov 14, 2002 at 19:47 UTC

    Adjust the numbers and name to suit.

    sub rndlc{local$"=''; "@{[map{chr(97+int rand 26)} 1 .. shift]}" } print rndlc 20; hgvuemeeezgjwbzjmgezo

    Okay you lot, get your wings on the left, halos on the right. It's one size fits all, and "No!", you can't have a different color.
    Pick up your cloud down the end and "Yes" if you get allocated a grey one they are a bit damp under foot, but someone has to get them.
    Get used to the wings fast cos its an 8 hour day...unless the Govenor calls for a cyclone or hurricane, in which case 16 hour shifts are mandatory.
    Just be grateful that you arrived just as the tornado season finished. Them buggers are real work.

      I say bravo lol
      but this was simple. okay now you tell me if you can find another way, and i ll try to find what it is. as an exercise.