Help for this page

Select Code to Download


  1. or download this
    $dest =~ s/\//\\/g;
    # Rewritten:
    $dest =~ s#/#\\#g; # Singular character
    $dest =~ s{/}{\\}g; # Paired characters
    
  2. or download this
    @sortedarraydirectory = @arraydirectory;
    @sortedarraydirectory = sort @sortedarraydirectory
    # Change to 1 command:
    @sortedarraydirectory = sort @arraydirectory;