Help for this page

Select Code to Download


  1. or download this
    if (not $inst =~ /lea/i) {
      # do things
    }
    
  2. or download this
    if (not $label.$inst =~ /\blea\b/i) {
      # do things
    }
    
  3. or download this
    if (not (($label.$inst) =~ /\blea\b/i)) {
      # do things
    }
    
  4. or download this
    if (not ($label.$inst) =~ /\blea\b/i) {
      # do things
    }
    
  5. or download this
    $ perl -e 'use warnings; use strict; my $pre="foo"; my $suf="bar"; pri
    +nt (not (($pre.$suf) =~ /lea/i)); print "\n";'
    1
    $ perl -e 'use warnings; use strict; my $pre="foo"; my $suf="bar"; pri
    +nt (not ($pre.$suf) =~ /lea/i); print "\n";'
    
    $