To split after each set of numbers, you might use a pattern to match only digits between word boundaries.
Then use K
to forget what is matched until so far follwed by matching optional horizontal whitespace chars to not get trailing whitespaces after the split.
$string = '521158525 Interest Being Subordinated: 521855248 Benefiting Interest: 511589923';
$result = preg_split(
"d+h*K",
$string,
0,
PREG_SPLIT_NO_EMPTY
);
print_r($result);
Output
Array
(
[0] => 521158525
[1] => Interest Being Subordinated: 521855248
[2] => Benefiting Interest: 511589923
)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…