Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
        $line =~ s/(.{4})(.{4})/$2$1/g;
    }
    print join "\n", @lines;