3v4l.org

run code in 500+ PHP versions simultaneously
<?php $re = '/\b(?:Interesting Character #\d+:|Their Best Movie:)\h+\K.+/'; $str = 'April 01 2020 Key Information Read :: Interesting Character #1: Kermit the Frog April 01 2020 Key Information Read :: Interesting Character #2: Miss Piggy April 01 2020 Key Information Read :: Their Best Movie: The Muppet Movie (1979) '; preg_match_all($re, $str, $matches); print_r($matches[0]);
Output for 7.4.0 - 7.4.33, 8.0.1 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.21, 8.5.0 - 8.5.7
Array ( [0] => Kermit the Frog [1] => Miss Piggy [2] => The Muppet Movie (1979) )

preferences:
83.65 ms | 1266 KiB | 4 Q