Help for this page

Select Code to Download


  1. or download this
    #!perl -p
    use List::Util 'shuffle';
    $_=~s{(?<=\b\w)(\w+)(?=\w\b)}{join'',shuffle split//,$1}xeg;
    
  2. or download this
    perl -MList::Util=shuffle -pe '$_=~s{(?<=\b\w)(\w+)(?=\w\b)}{join"",sh
    +uffle split//,$1}xeg;'