fork download
  1. <?php
  2.  
  3. $re = '~{{[^|]*\|([^|]*)\|[^|]*}}~';
  4. $str = "{{ai|Perseverance|Garen}} is no longer removed by combat dehancing effects such as {{ai|Blood Scent|Warwick}}";
  5. $result = preg_replace($re, '\1', $str);
  6. echo $result;
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Perseverance is no longer removed by combat dehancing effects such as Blood Scent