php 多个分隔符在爆炸

2022-08-30 06:30:28

我有一个问题,我有一个字符串数组,我想在不同的分隔符中爆炸。例如

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

我需要一个数组,它在@ 或vs中爆炸。

我已经写了一个解决方案,但如果每个人都有更好的解决方案,请在这里发布。

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;
}

答案 1

尝试使用:

$output = preg_split('/ (@|vs) /', $input);

答案 2

您可以采用第一个字符串,将所有字符串替换为 using ,然后爆炸,反之亦然。@vsstr_replacevs


推荐