I cant figure how to use preg_split properly

I have found two examples of preg_split that works perfectly, but even looking at the php manual, I cant figure how to make an explode with multiple patterns.

Right now I want to explode a string by Monday or Tuesday or Friday

Found this examples:


$import = preg_split( '/\\r\
|\\r|\
/', $string );
// explodes the string by line breaks

$import = preg_split("/[1|2|3|4|5|6|7|8|9|0]+/", $string);  
// explodes the string by its numbers

But still got no idea how to write the pattern. Can anyone help me? I home my functions help someone too.

split on an empty line (\r
\r
) and then use 2 at a time.

Thank you Cups!

The string is something like:

"sábado, 10 de septiembre de 2011

Apertura, Argentina
15:05
Godoy Cruz 1.95
X 3.20
All Boys 3.90
61
17:10
Estudiantes La Plata 1.75
X 3.25
Tigre 5.00
61

domingo, 11 de septiembre de 2011
21:15 Racing Club 1.65
X 3.50
Olimpo Bahía Blanca 5.25
61
"

And the Pattern are the spanish weekday names: sábado, domingo, lunes…

Show us a made-up example of the string you have have to split, and then show the exact parts you would like to end up with - don’t describe them - show them.