Help for this page

Select Code to Download


  1. or download this
    if ($sentence =~ /foo/gis && $sentence =~ /bar/gis)
    {
       # do something further with $sentence 
    }
    
  2. or download this
    if ($sentence =~ /foo/gis)
    {
    ...
          # now do something with the sentence
       }
    }
    
  3. or download this
    if ($sentence =~ /foo/gis)
    {
    ...
           # *now* do something with the sentence...
        }
    }