Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;       
    #          Two strings,   single blanc, two strings,   double blanc
    ...
    }
    @words=@combinations;
    print Dumper\@words;
    
  2. or download this
    $VAR1 = [
              'abcdefgh',
              'jklmnopq'
            ];
    
  3. or download this
    use strict;
    use warnings;
    ...
        }
        return @output;
    }
    
  4. or download this
    Double blancs:
    ["abcdefgh", "jklmnopq"]
    ...
    
    Array contains single blanc:
    ["abcdefghjklmnopq", "rstuvwxy"]