- 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.
- or download this
# Does $user contain the string from $useragent
$user =~ /\Q$useragent\E/
- or download this
# Is $user equal to the string from $useragent
$user =~ /^\Q$useragent\E\z/
- or download this
# Is $user equal to the string from $useragent
$user eq $useragent