<?php function wordSafeSplit(string $text, int $pieces = 2): array { $maxLength = intdiv(strlen($text), $pieces); return preg_split( "~.{0,$maxLength}\K\s~s", $text, $pieces ); } $text = "The Quick : Brown Fox Jumped Over The Lazy / Dog"; var_export(wordSafeSplit($text));
You have javascript disabled. You will not be able to edit any code.