Help for this page

Select Code to Download


  1. or download this
    Unmatched ( in regex; marked by <-- HERE in m/mozilla/5.0 ( <-- HERE m
    +acintosh; u; safari/525/ at script.pl line 30.
    
  2. or download this
    # Does $user contain the string from $useragent
    $user =~ /\Q$useragent\E/
    
  3. or download this
    # Is $user equal to the string from $useragent
    $user =~ /^\Q$useragent\E\z/
    
  4. or download this
    # Is $user equal to the string from $useragent
    $user eq $useragent