fork download
  1. <?php
  2.  
  3. $text = '[quote=Mod;3]Whats up?[/quote][/quote]';
  4. $text = preg_replace('~\[quote=.*?\](.*)\[/quote\]~i', '<b>$1</b>', $text);
  5. print $text;
  6.  
  7. print "\n\n";
  8.  
  9. $text = 'And I said [quote=Mod;3] Hey Hey Hey Hey, Hey Hey Hey.[/quote] I said Hey! [quote=Mod;3]Whats going on?[/quote][/quote] 25 years of my life is still [quote=Mod;3]trying to get up that great big hill[/quote] of hope[/quote].';
  10.  
  11. $text = preg_replace('~\[quote=.*?\](.*?)\[/quote\](?!\[/quote\])~i', '<b>$1</b>', $text);
  12. $text = preg_replace('~\[/quote\]~i', '', $text);
  13. print $text;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
<b>Whats up?[/quote]</b>

And I said <b> Hey Hey Hey Hey, Hey Hey Hey.</b> I said Hey! <b>Whats going on?</b> 25 years of my life is still <b>trying to get up that great big hill</b> of hope.