我的数据库中有一个字符串,代表用户的注释。我想拆分这个字符串,这样我就可以将每个注释分成内容、用户和日期。
这是字符串的格式:
"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>"
我需要把它分解成一个数组
["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"]
我还在尝试这个。非常欢迎任何想法谢谢!:)