Re: shuffle a array

2022-08-18 Thread Artur Penttinen
sort { int(rand 3)-1 } @array17.08.2022, 04:42, "Jacques Deguest" :I think this kind of question is not modperl specific and best suited for StackOverlow -> On 2022/08/17 10:07, pengyh wrote: in my modperl app I want to shuffle an array. such a

Re: shuffle a array

2022-08-16 Thread Jacques Deguest
I think this kind of question is not modperl specific and best suited for StackOverlow -> <https://stackoverflow.com/questions/13416337/what-s-the-best-way-to-shuffle-an-array-in-perl> On 2022/08/17 10:07, pengyh wrote: in my modperl app I want to shuffle an array. such as this method

shuffle a array

2022-08-16 Thread pengyh
in my modperl app I want to shuffle an array. such as this method in ruby, irb(main):005:0> array => [1, 2, 3, 4] irb(main):006:0> array.shuffle => [1, 4, 3, 2] do you know how to achieve it in perl? Thanks.