If it's stuff in "[...]" tags, you could do:
$text = preg_replace('/\[[^\]]*\]/', '', $text);
However, you risk possibly replacing brackets that are not bbcode brackets. Better might be to run it through whatever processing vbulletin uses to convert bbcode into HTML, then run that through [man]strip_tags/man.