peeeer Posted June 21, 2009 Share Posted June 21, 2009 Hello, I have this text: Combat Mastery I Class: All Level: 0 Prerequisite: None Gain Score: 1000 VP: 10 Combat Mastery II Class: All Level: 0 Prerequisite: Combat Mastery I Get Kills: 5 VP: 15 And if I want to split it into two arrays; like $result[0] and result[1] How do I do? It's where it's an extra enter that I want to split it. I tried with this and it didn't work: $result = preg_split("/\n\n/",$text); ??? Edit: I solved it already.. $result = explode(" ",$text); Quote Link to comment Share on other sites More sharing options...
nrg_alpha Posted June 21, 2009 Share Posted June 21, 2009 You could have also done: $result = preg_split('#\R{2,}#', $text); Since this topic is solved, you can flag this thread as such. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.