Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        $re =~ s/_/.+/;
        /\b$re\b/ and print "$stem: $_\n" for @array2;
    }
    
  2. or download this
    fil_: file
    fil_: fils
    fil_: filled
    t_xt: text
    _erl: perl
    
  3. or download this
    use strict;
    use warnings;
    ...
        $re =~ s/_/./;
        print "$stem: $1\n" while $words =~ /\b($re)\b/g;
    }
    
  4. or download this
    fil_: file
    fil_: fils
    t_xt: text
    _erl: perl