Cheers for the reply.. I've had a good look round now and I've come up with the following...
RewriteEngine on
RewriteRule ^browse/([a-zA-Z0-9_]+)/id/([a-zA-Z0-9]+)/?$ index.php?class=$1&id=$2 [L]
RewriteRule ^browse/([a-zA-Z0-9_]+)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9]+)/?$ index.php?class=$1&model=$2&id=$3 [L]
RewriteRule ^browse/id/([a-zA-Z0-9]+)/?$ index.php?id=$1 [L]
RewriteRule ^browse/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$ index.php?class=$1&model=$2 [L]
RewriteRule ^browse/([a-zA-Z0-9_]+)/?$ index.php?class=$1 [L]
It does work, and quite well.. but is that a long way round to do it? could it be done with just like one regular expression (bare in mind it's not always "class", "model" and "id" in the URL.. "model" and "id" may not be in the URL, sometimes it may just have "class" and "id" in the URL, and also sometimes it may just be "id" in the URL..) so it is quite complicated...
any help?
cheers!