Matching problems in apache configuration

want to match how to write regular for non-hello/admin under hello/.* in apache.
url looks like this:

hello/www/index.php
hello/admin

^hello/([^admin].*)$ 

hello/(?:[^admin].*)

Why not all of the above

Menu