'Delimiters'
Posted: Tue Feb 24, 2004 8:46 am
How do I get information inside a set of delimiters I define?
explode() doesn't seem to work well because it doesn't understand that I'm looking for the information BETWEEN my | and |, and not direcly after.
So when I explode("|" , $doc), I get an array like this
He'p is appreciated 
explode() doesn't seem to work well because it doesn't understand that I'm looking for the information BETWEEN my | and |, and not direcly after.
So when I explode("|" , $doc), I get an array like this
Code: Select all
array(
[0] => text
[1] => //Nothing here because there's a space directly behind the second delimiter
[2] => text
[3] => //Another space
);