Help for this page

Select Code to Download


  1. or download this
    return scalar reverse $num;
    
  2. or download this
    sub format_cc_num {
        my ($num, $spacer) = @_;
        scalar reverse join $spacer, (reverse $num) =~ /(....)/g;
    }