Help With Route

Hi,

I wanted to use ^ in rules to check "apart from this" as we are using in codeigniter.

This is my code in rules array

‘<slug:[a-z0-9-_]+>’=>‘controller/function/<name>’,

and i need something like

‘<slug:[a-z0-9-_]+> ^ <myfuntion>’=>‘controller/function/<name>’, which is not working :(

Can anyone help me to solve this?