Help for this page

Select Code to Download


  1. or download this
        $x =~ $y
    
  2. or download this
        if ($val1 =~ $val2) {...}
    
  3. or download this
        if @array =~ $elem {...}        # true if @array contains $elem
    
    ...
        if $value =~ ('a',/\s/,7) {...} # true if $value is eq to 'a'
                                        #   or if $value contains whitespa
    +ce
                                        #   or if $value is == to 7