create an array that contains all of the ubb codes like this:
$ubb_codes = array('b','u',...);
then do something like this
foreach($ubb_codes as $this_code) {
eregi_replace("\\[/{0,1}$this_code\\]",'',$string);
} //end foreach
of course $string is the string you wish to remove the ubb codes from.