fork download
  1. <?php
  2.  
  3. $string = 'AAACDEAAAABBBUUDD';
  4.  
  5. $bold = preg_replace( '/(.)\1{2,}/', '<b>$0</b>' , $string );
  6.  
  7. echo $bold;
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
<b>AAA</b>CDE<b>AAAA</b><b>BBB</b>UUDD