<?php $string = "one two three four five"; [$part1, $part2] = preg_split('/.*\K /', $string); var_export($part1); echo "\n"; var_export($part2);
You have javascript disabled. You will not be able to edit any code.