3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = 'abc-def-ghi::State.32.1.14.16.5:A'; var_export( preg_split( '/(?:[^:]*\K:){3}/', $string ) ); $string = 'def-ghi::yellow:abc::def:B'; var_export( preg_split( '/(?:[^:]*\K:){3}/', $string, 2 # instruct to not explode more than once (limit generated elements to a max of 2) ) );

preferences:
26.11 ms | 405 KiB | 5 Q