Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    }
    
    insert( '', [ $input =~ /[^-]/g ], [ $input =~ /-/g ] );
    
  2. or download this
    use strict;
    use warnings;
    ...
    }
    
    insert( '', $1, $2 ) if $input =~ /^([^-]+)(-+)$/;