Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem, I have a string array, and I want to explode in different delimiter. For Example

$example = 'Appel @ Ratte';
$example2 = 'apple vs ratte'

and I need an array which is explode in @ or vs.

I already wrote a solution, but If everybody have a better solution please post here.

private function multiExplode($delimiters,$string) {
    $ary = explode($delimiters[0],$string);
    array_shift($delimiters);
    if($delimiters != NULL) {
        if(count($ary) <2)                      
            $ary = $this->multiExplode($delimiters, $string);
    }
    return  $ary;
}
share|improve this question
1  
Is there anything wrong with your existing solution? Otherwise this question will probably be closed. – BoltClock Feb 10 '11 at 9:45
It's now also bad to ask for a better more efficient solution? lol – bicycle Mar 27 at 9:28

6 Answers

up vote 33 down vote accepted

what about using

$output = preg_split( "/ (@|vs) /", $input );
share|improve this answer
That is what I am looking for. – run Feb 10 '11 at 13:52
Amazing. i wonder how this chalks up against explode() on single arguments – Ascherer 2 days ago
It doesn't matter, if you want to make large system with hard string parsing, the most effective way is own parser. Oterwise it doesn't have much effect on system speed, but you preffer to use easiest way for you (To be money effective) – SergeS 2 days ago

You can take the first string, replace all the @ with vs using str_replace, then explode on vs or vice versa.

share|improve this answer

Wouldn't strtok() work for you?

share|improve this answer

How about using strtr() to substitute all of your other delimiters with the first one?

private function multiExplode($delimiters,$string) {
    return explode($delimiters[0],strtr($string,array_combine(array_slice($delimiters,1),array_fill(0,count($delimiters)-1,array_shift($delimiters))))));
}

It's sort of unreadable, I guess, but I tested it as working over here.

One-liners ftw!

share|improve this answer
One too many commas at the end of that statement. – brighterdean Mar 6 at 11:17

You are going to have some problems (what if you have this string: "vs @ apples" for instance) using this method of sepparating, but if we start by stating that you have thought about that and have fixed all of those possible collisions, you could just replace all occurences of $delimiter[1] to $delimiter[n] with $delimiter[0], and then split on that first one?

share|improve this answer

If your delimiter is only characters, you can use strtok, which seems to be more fit here. Note that you must use it with a while loop to achieve the effects.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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