fork download
  1. <?php
  2.  
  3. $s = "1 #first (dog)";
  4. echo preg_replace('~1\s*#~', ',$0', $s);
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
,1                #first                  (dog)