fork download
  1. <?php
  2.  
  3. $re = "#][^\[\]]*(*SKIP)(*F)|<\/?[a-z].*?>#si";
  4. $str = "[<span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">heading </span>heading=\"h1\"]Its a <span style=\"text-decoration: line-through;\">subject</span>.[/<span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">heading</span>]";
  5. $result = preg_replace($re, '', $str);
  6. echo $result;
Success #stdin #stdout 0.02s 24144KB
stdin
Standard input is empty
stdout
[heading heading="h1"]Its a <span style="text-decoration: line-through;">subject</span>.[/heading]