Jump to content

Double enter line?


peeeer

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.