fork download
  1. <?php
  2.  
  3. $line = '
  4. Coca&#8209;Cola
  5. Beverage;Food;Music
  6. ';
  7.  
  8. '/(&(?:[A-Za-z_:][\w:.-]*|\#(?:[0-9]+|x[0-9a-fA-F]+)))?;/',
  9. '$matches',
  10. 'if ($matches[1])
  11. return $matches[0];
  12. return $matches[0]." ";'
  13. ),
  14. $line
  15. );
  16. echo $line;
  17. ?>
  18.  
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
  Coca&#8209;Cola
  Beverage; Food; Music