Help for this page

Select Code to Download


  1. or download this
    my @array = map { qr{$_} } ('^abcd', 'cd[ef]g', 'cat$');
    
  2. or download this
    # timtowtdi...
    foreach ( qw{ ^abcd cd[ef]g cat$ } ) { push @array, qr{$_} };
    ...
    
    # or the way I think is most clear and most sane....
    @array = ( qr{^abcd}, qr{cd[ef]g}, qr{cat$} );