Help for this page

Select Code to Download


  1. or download this
    my @string = "hubris" =~ /(.)/sg;
    @string[0,2,5] = "etv" = ~ /(.)/sg;
    print reverse @string;
    
    __END__
    virtue
    
  2. or download this
    sub stringify { local $"; "@{$_[0]}" }