fork download
  1. <?php
  2. $regex = '~
  3. _\[{2} # look for an underscore and two open square brackets
  4. ([^]]+) # capture anything that is not a closing bracket
  5. \]{2}_ # followed by two closing square brackets and an underscore
  6. ~x'; # free space mode for this explanation
  7. $string = "_[[2, verb//substantiv//adjektiv]]_";
  8.  
  9. $new_string = preg_replace($regex, "[[$1]]", $string);
  10. # in the match replace [[(capture Group 1)]]
  11. echo $new_string;
  12. ?>
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
[[2, verb//substantiv//adjektiv]]