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);
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);