fork download
  1. <?php
  2.  
  3. $str = 'Comercial /Vendedor - Compras/ Vendas - Um / Dois';
  4. $str = preg_replace('(\s*/\s*)','/', $str);
  5. echo $str;
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Comercial/Vendedor - Compras/Vendas - Um/Dois