Help for this page

Select Code to Download


  1. or download this
    if ( $string !~ m/pattern/ ) { ..... }
    
  2. or download this
    if ( not $string =~ m/pattern/ ) { ...... }
    
  3. or download this
    unless ( $string =~ m/pattern/ ) { ...... }