3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = "The Chernobyl disaster was a catastrophic nuclear accident that occurred on 26 April 1986, in the No. 4 nuclear reactor at the Chernobyl Nuclear Power Plant, near the city of Pripyat, in the north of the Ukrainian SSR."; $pattern = '%[A-Z]\w+%'; preg_match_all($pattern, $string, $matches); print_r($matches);
Output for 7.1.25 - 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
Array ( [0] => Array ( [0] => The [1] => Chernobyl [2] => April [3] => No [4] => Chernobyl [5] => Nuclear [6] => Power [7] => Plant [8] => Pripyat [9] => Ukrainian [10] => SSR ) )

preferences:
167.68 ms | 404 KiB | 184 Q