I want to split using multiple delimiters including -:|/. Here is my current code:
preg_split( "/ [-:|] /", $body);
Now I have problem with /. Any ideas?
|
I want to split using multiple delimiters including
Now I have problem with
| ||||
|
feedback
|
|
To use the delimiting character inside a regular expression, escape it using a
Better, you can use other any other delimiter. Various characters will work:
| ||||
|
feedback
|
ps: and, I suppose, there should be no spaces around [ ], but it depends on your situation. | ||||
|
feedback
|