I want to split using multiple delimiters including -:|/. Here is my current code:

preg_split( "/ [-:|] /", $body);

Now I have problem with /. Any ideas?

link|improve this question

58% accept rate
feedback

3 Answers

up vote 1 down vote accepted

To use the delimiting character inside a regular expression, escape it using a \.

preg_split("/ [-:|\\/] /", $body);

Better, you can use other any other delimiter. Various characters will work:

preg_split("@ [-:|/] @", $body);
preg_split("# [-:|/] #", $body);
link|improve this answer
woot. works fine – rails_noob Jan 25 at 6:56
feedback
preg_split( '~[-:|/]~', $body);

ps: and, I suppose, there should be no spaces around [ ], but it depends on your situation.

link|improve this answer
feedback
preg_split( "~ [-:/|] ~", $body);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.