|
Posted by Bob Stearns on 06/24/06 05:22
J Huntley Palmer wrote:
> I am getting data lines with data separated by these 5 characters:
>
> , : ; <TAB> <whitespace>
>
> eg. foo,bar:baz foobar
>
> I would like to extract foo bar baz nad foobar.
>
> How can I parse out the data between or separated by them?
>
> Thanks!
$array = preg_split("[,;:\t ]", $string, -1, PREG_SPLIT_NO_EMPTY);
The last argument takes care of consecutive delimiters.
See URL: http://php.benscom.com/manual/en/function.preg-split.php
Navigation:
[Reply to this message]
|