When you need to split a long string with no line breaks at a date string, you may consider a regex split method with
s+(?=<DATE_PATTERN HERE>) # DATE is preceded with whitespace, anything can follow
s+(?=<DATE_PATTERN HERE>) # DATE is preceded with whitespace, date is not followed with letter/digit/_
s*(?<!d)(?=<DATE_PATTERN HERE>) # Whitespace before date optional, no digit before
s*(?<!d)(?=<DATE_PATTERN HERE>)(?!d) # Whitespace before date optional, no digit before and after
s*(?<!d)(?<!d<DEL>)(?=<DATE_PATTERN HERE>)(?!<DEL>?d) # Whitespace before date optional, no digit with delimiter before and after
Here, you may use a simple s+(?=d{1,2}/d{1,2}/d{4})
regex that matches 1+ whitespaces followed with (a (?=...)
is a positive lookaround that does not consume any text, just checks if there is a match and returns true or false) one or two digits, /
, one or two digits, /
and four digits:
$records = preg_split('~s+(?=d{1,2}/d{1,2}/d{4})~', $Comment);
See the PHP demo:
$Comment = "8/13/2015 11:44:10 AMVN - Upon additional underwriting review. Account will be declined due to inconsistencies in personal and/or business information that can not be verified or validated 8/13/2015 8:32:52 AMFA Rcvd Change In Terms letter, will fwd to the Underwriter. 8/10/2015 1:21:17 PMVN - Please provide change in term letter capping monthly volume $20K, average ticket to $500 and high ticket to $1K. 8/10/2015 11:02:19 AMVN Declined as the financial condition do not support business type and requested limits. 8/10/2015 9:37:03 AMFA Rcvd Bank Statements, will fwd to the Underwriter. 8/4/2015 3:35:05 PMVN - Please provide 3 most recent bank statements and 3 most recent processing statements. 8/4/2015 9:52:04 AMBAI In Underwriting iEntry Application";
$records = preg_split('~s+(?=d{1,2}/d{1,2}/d{4})~', $Comment);
print_r($records);
Output:
Array
(
[0] => 8/13/2015 11:44:10 AMVN - Upon additional underwriting review. Account will be declined due to inconsistencies in personal and/or business information that can not be verified or validated
[1] => 8/13/2015 8:32:52 AMFA Rcvd Change In Terms letter, will fwd to the Underwriter.
[2] => 8/10/2015 1:21:17 PMVN - Please provide change in term letter capping monthly volume $20K, average ticket to $500 and high ticket to $1K.
[3] => 8/10/2015 11:02:19 AMVN Declined as the financial condition do not support business type and requested limits.
[4] => 8/10/2015 9:37:03 AMFA Rcvd Bank Statements, will fwd to the Underwriter.
[5] => 8/4/2015 3:35:05 PMVN - Please provide 3 most recent bank statements and 3 most recent processing statements.
[6] => 8/4/2015 9:52:04 AMBAI In Underwriting iEntry Application
)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…