I have a string in my DB that represents notes for a user. I want to split this string up so I can separate each note into the content, user, and date.
Here is the format of the String:
"Example Note <i>Josh Test 12:53 PM on 8/14/12</i><br><br> Another example note <i>John Doe 12:00 PM on 9/15/12</i><br><br> Last Example Note <i>Joe Smoe 1:00 AM on 10/12/12</i><br><br>"
I need to break this into an array of
["Example Note", "Josh Test", "12:53 8/14/12", "Another example note", "John Doe", "12:00 PM 9/15/12", "Last Example Note", "Joe Smoe", "1:00 AM 10/12/12"]
I am still experimenting with this. Any ideas are very welcomed thank you! :)