我有这样的字符串:
123 qwerty 6 foo bar 55 bar
我需要让它像这样
123 qwerty
6 foo bar
55 bar
怎么做?
UPD: 我试过了
$subject = "123 qwerty 6 foo 55 bar";
$pattern = '/[^0-9]/';
preg_match($pattern, substr($subject,3), $matches, PREG_OFFSET_CAPTURE);
echo "<pre>";
print_r($matches);
但这对我不起作用。