Help for this page

Select Code to Download


  1. or download this
    if (my ($match) = $s =~ /yesterday (.*?) after/s) {
       say $match;
    }
    
  2. or download this
    yesterday foo yesterday bar after
    
  3. or download this
    foo yesterday bar
    
  4. or download this
    bar
    
  5. or download this
    if (my ($match) = $s =~ /hello ((?:(?!yesterday).)*) yesterday/s) {
       say $match;
    }