Help for this page

Select Code to Download


  1. or download this
    my( @this ) = $line =~ /$regex/gi;
    my @want = ( 'DATE', '_RE_IRD_Soc' );
    
    Test::More::is_deeply( \@this, \@want, "got what I needed");
    
  2. or download this
     $regex = qr{
      \$ \(
           ( [^\)]+ ) # $1
         \)
          (.*) # $2
    }xmi;