If you mean the bookmark list?
You call into the filter with e.g.:
add_filter($this->_filter, array($this,'ReplaceAll'), 9); (in a class)
or
add_filter('some_filter', 'ReplaceAll', 9); (not in a class)
Where $this-filter is your filter e.g. 'bookmark_list' and 'ReplaceAll' is the function you will write. See: http://codex.wordpress.org/Plugin_API/Filter_Reference and check the chapter "blogroll filters" for most available filters.
you can then write your function 'ReplaceAll' like usual e.g.
function ReplaceAll($something_that_comes_in_from_the_filter)
{
// do stuff e.g. $something_that_comes_in_from_the_filter =
$something_that_comes_in_from_the_filter . ' hello world';
return $something_that_comes_in_from_the_filter;
}
In terms of funtionality inside that function you can define e.g. a regular expression:
const HTML_REF_REGEX2 = '/<a(.*?)href=[\'"](.*?)[\'"](.*?)>(.*?)<\\/a>/i';
and then reshuffle the parts with the matches e.g.:
return '<a' . $arrUrlMatches[1] . 'href="' . $arrUrlMatches[2]
. '"' . $arrUrlMatches[3] .'>' . 'hello world'. $arrUrlMatches[4] . '</a>';
(See: http://php.net/manual/en/function.preg-match.php for how that works)
So in that way you can make it look any way you want.