<?php

   $string = 'AAACDEAAAABBBUUDD';
   
   $bold = preg_replace( '/(.)\1{2,}/', '<b>$0</b>' , $string );
   
   echo $bold;