how to edit show_count i need to change from
<li class="cat-item cat-item-6"><a href="http://site.com/ccc/">Category</a> (40)</li>
to
<li class="cat-item cat-item-6"><a href="http://site.com/ccc/">Category <span>40</span></a></li>
And here is my code in template sidebar
<?php
$catlist=wp_list_categories("echo=0&orderby=name&show_count=1&hierarchical=0&title_li=0&hide_empty=0");
$catlist=preg_replace('/title=\"(.*?)\"/','',$catlist);
echo $catlist;
?>