Help for this page

Select Code to Download


  1. or download this
         if($query=~$term) {...}
  2. or download this
         if ( 'abc' =~ 'bc' ) {
            print "yes\n";
         }
    
  3. or download this
         if ( 'abc' =~ m/bc/ ) {  # good
         if ( 'abc' =~  /bc/ ) {  # good
         if ( 'abc' =~ m%bc% ) {  # good (for any non-alphanum)
      but:
         if ( 'abc' =~  'bc' ) {  # BAD! (or so we assume)
    
  4. or download this
         if ( 'abc' =~ 'bc' ) {       # works
         if ( 'abc' =~ $pattern ) {   # works
         if ( 'abc' =~ "$pattern" ) { # works
         if ( 'abc' =~ bc ) {         # works!!
         if ( 'abc' =~ 'bc'g ) {      # Error: bareword 'g'