regex help

I would like to search strings composed by only one type of charachter for example
only strings composed by the charachter 'b'

is it right?

$egrep '\<(b+)+\>' filename

Could be there some side effects?

Regards.

??
just
cat file | grep b