I'm not sure how to explain this but I'll try my best. I have a full line of text that I'm reading from an API using SoapClient with PHP. When I'm getting the data it's putting all of the data on one line. I want to be able to filter through the data and throw it into an array using preg_match but I'm not too sure what pattern I would use to do it. The example is from a chat session and each new line I want to be starting with the timestamp. So for example:
8:02AM Charlie connects to chat client 8:04AM Agent Jackie says "Hi Charlie, how can I help you today" 8:06AM Charlie say[s, "I'm looking to get an account balance."
The above is an example of how the one line of text is sent back to me. However, I want to be able to break it up by time stamp and be in an array like below:
array(
[0] => "8:02AM Charlie connects to chat client",
[1] => "8:04am Agent Jackie says 'Hi Charlie, how can I help you today'",
[2] => "8:06AM Charlie says, 'I'm looking to get an account balance.'"
)
I've been looking on google and here but I can't seem to find the proper wording to look for what I need.
This is the data that is returned from the SoapClient:
stdClass Object (
[getChatResult] => getChat_OK
[sChatLog] => 8:02AM Charlie connects to chat client 8:04AM Agent Jackie says "Hi Charlie, how can I help you today" 8:06AM Charlie says, "I'm looking to get an account balance."
)
"\n") or if there is tabs between them ("\t") – Tim Withers Jan 26 at 21:11explode("\n", chatLog)should do the trick – Hamish Jan 26 at 21:17