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); Link to comment https://forums.phpfreaks.com/topic/163119-double-enter-line/ 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. Link to comment https://forums.phpfreaks.com/topic/163119-double-enter-line/#findComment-860649 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.