Help for this page

Select Code to Download


  1. or download this
    for ( 1 .. 5 ) {
        $foo = qr/$_/o;
        print "Match!\n" if '1' =~ m/$foo/;
    }
    
  2. or download this
    for ( 1 .. 5 ) {
        $foo = qr/$_/;
        print "Match!\n" if '1' =~ m/$foo/;
    }