fork download
  1. <?php
  2.  
  3. $line = <<< LOB
  4. test -b- 123 -b- another test -h- hi there -h-
  5. LOB;
  6.  
  7. $line = preg_replace('/-(b|i|u|h)-(.*?)-(b|i|u|h)-/sim', '<$1>$2</$3>', $line);
  8.  
  9.  
  10. echo $line;
Success #stdin #stdout 0.02s 24192KB
stdin
Standard input is empty
stdout
test <b> 123 </b> another test <h> hi there </h>