<?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) ) );
You have javascript disabled. You will not be able to edit any code.