Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $empty='';
    say "successful //" if ' ' =~ /$empty/;
    test();
    
  2. or download this
    --- run 1
    0<>
    ...
    --- run 4
    1<x>
    2<x>
    
  3. or download this
    ...
    for my $tybalt (qw/ () | (?:) g{0}/) {
    ...
        say "successful /$tybalt/" if ' ' =~ /$tybalt/;
        test();
    }
    
  4. or download this
    successful /()/
    --- run 5
    ...
    0<>
    1<>
    2<>