Parsing the user-agent header I need to find out if I am dealing with IE-8 or earlier:
<= IE8
So the regex should return true in the following cases:
(compatible; MSIE 8.0;...)
(compatible; MSIE 7.0;...)
etc.
The following should yield false:
(compatible; MSIE 9.0;...)
This following regex does not work:
"MSIE [6-8]\."