Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    use strict;
    ...
      while ($_[0]) { $_[0] =~ s/^([a-zA-z]|[0-9]+)//; push @out, $1; }
      return @out;
    }