3v4l.org

run code in 300+ PHP versions simultaneously
<?php $meta_pattern = '/(?<=^|%3$s|\s)(?:(?!\S*%3$s\S*)\S+\s+){0,%2$d}(?:(?!\S*%3$s\S*%1$s)\S*)?%1$s\S*?(?:\s+\S+?){0,%2$d}(?=$|%3$s|\s)/'; $reg = sprintf($meta_pattern, preg_quote('search','/'), 3, preg_quote('$@','/')); $tests = array( array('input' => 'a b c d search e f g h', 'expected' => 'b c d search e f g'), array('input' => 'b c d search e f g h', 'expected' => 'b c d search e f g'), array('input' => 'a b c d search e f g', 'expected' => 'b c d search e f g'), array('input' => 'c d search e f g h', 'expected' => 'c d search e f g'), array('input' => 'a b c d search e f', 'expected' => 'b c d search e f'), array('input' => 'a$@b c d search e f g h', 'expected' => 'b c d search e f g'), array('input' => 'a b c d search e f g$@h', 'expected' => 'b c d search e f g'), array('input' => 'a b$@c d search e f g h', 'expected' => 'c d search e f g'), array('input' => 'a b c d search e f$@g h', 'expected' => 'b c d search e f'), array('input' => 'a b c$@d search e f g h', 'expected' => 'd search e f g'), array('input' => 'a b c d search e$@f g h', 'expected' => 'b c d search e'), array('input' => 'a b c d$@search e f g h', 'expected' => 'search e f g'), array('input' => 'a b c d search$@e f g h', 'expected' => 'b c d search'), array('input' => 'a b c d$@search$@e f g h', 'expected' => 'search'), array('input' => 'a b c d xsearchx e f g h', 'expected' => 'b c d xsearchx e f g'), array('input' => 'b c d xsearchx e f g h', 'expected' => 'b c d xsearchx e f g'), array('input' => 'a b c d xsearchx e f g', 'expected' => 'b c d xsearchx e f g'), array('input' => 'c d xsearchx e f g h', 'expected' => 'c d xsearchx e f g'), array('input' => 'a b c d xsearchx e f', 'expected' => 'b c d xsearchx e f'), array('input' => 'a$@b c d xsearchx e f g h', 'expected' => 'b c d xsearchx e f g'), array('input' => 'a b c d xsearchx e f g$@h', 'expected' => 'b c d xsearchx e f g'), array('input' => 'a b$@c d xsearchx e f g h', 'expected' => 'c d xsearchx e f g'), array('input' => 'a b c d xsearchx e f$@g h', 'expected' => 'b c d xsearchx e f'), array('input' => 'a b c$@d xsearchx e f g h', 'expected' => 'd xsearchx e f g'), array('input' => 'a b c d xsearchx e$@f g h', 'expected' => 'b c d xsearchx e'), array('input' => 'a b c d$@xsearchx e f g h', 'expected' => 'xsearchx e f g'), array('input' => 'a b c d xsearchx$@e f g h', 'expected' => 'b c d xsearchx'), array('input' => 'a b c d$@xsearchx$@e f g h', 'expected' => 'xsearchx') ); foreach($tests as $test) { preg_match($reg,$test['input'],$res); if(!($res && !empty($res[0]) && $res[0]==$test['expected'])) { var_dump('Test '.$test['input'].' failed.'); } }
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6

preferences:
250.77 ms | 406 KiB | 358 Q