Domanda

Come posso esplodere la seguente stringa:

Lorem ipsum "dolor sit amet" consectetur "adipiscing elit" dolor

in

array("Lorem", "ipsum", "dolor sit amet", "consectetur", "adipiscing elit", "dolor")

In modo che il testo in citazione è trattata come una sola parola.

Ecco quello che ho per ora:

$mytext = "Lorem ipsum %22dolor sit amet%22 consectetur %22adipiscing elit%22 dolor"
$noquotes = str_replace("%22", "", $mytext");
$newarray = explode(" ", $noquotes);

, ma il mio codice divide ogni parola in un array. Come faccio a fare le parole all'interno virgolette trattati come una sola parola?

È stato utile?

Soluzione

È possibile utilizzare un preg_match_all(...):

$text = 'Lorem ipsum "dolor sit amet" consectetur "adipiscing \\"elit" dolor';
preg_match_all('/"(?:\\\\.|[^\\\\"])*"|\S+/', $text, $matches);
print_r($matches);

che produrrà:

Array
(
    [0] => Array
        (
            [0] => Lorem
            [1] => ipsum
            [2] => "dolor sit amet"
            [3] => consectetur
            [4] => "adipiscing \"elit"
            [5] => dolor
        )

)

E come si può vedere, si spiega anche citazioni fuggiti all'interno stringhe tra virgolette.

Modifica

Una breve spiegazione:

"           # match the character '"'
(?:         # start non-capture group 1 
  \\        #   match the character '\'
  .         #   match any character except line breaks
  |         #   OR
  [^\\"]    #   match any character except '\' and '"'
)*          # end non-capture group 1 and repeat it zero or more times
"           # match the character '"'
|           # OR
\S+         # match a non-whitespace character: [^\s] and repeat it one or more times

E in caso di corrispondenza %22 invece di virgolette, faresti:

preg_match_all('/%22(?:\\\\.|(?!%22).)*%22|\S+/', $text, $matches);

Altri suggerimenti

Questo sarebbe stato molto più facile con str_getcsv() .

$test = 'Lorem ipsum "dolor sit amet" consectetur "adipiscing elit" dolor';
var_dump(str_getcsv($test, ' '));

Ti dà

array(6) {
  [0]=>
  string(5) "Lorem"
  [1]=>
  string(5) "ipsum"
  [2]=>
  string(14) "dolor sit amet"
  [3]=>
  string(11) "consectetur"
  [4]=>
  string(15) "adipiscing elit"
  [5]=>
  string(5) "dolor"
}

È anche possibile provare questa funzione esplodere multipla

function multiexplode ($delimiters,$string)
{

$ready = str_replace($delimiters, $delimiters[0], $string);
$launch = explode($delimiters[0], $ready);
return  $launch;
}

$text = "here is a sample: this text, and this will be exploded. this also | this one too :)";
$exploded = multiexplode(array(",",".","|",":"),$text);

print_r($exploded);

In alcune situazioni poco conosciuta token_get_all() potrebbe rivelarsi utile :

$tokens = token_get_all("<?php $text ?>");
$separator = ' ';
$items = array();
$item = "";
$last = count($tokens) - 1;
foreach($tokens as $index => $token) {
    if($index != 0 && $index != $last) {
        if(count($token) == 3) {
            if($token[0] == T_CONSTANT_ENCAPSED_STRING) {
                $token = substr($token[1], 1, -1);
            } else {
                $token = $token[1];
            }
        }
        if($token == $separator) {
            $items[] = $item;
            $item = "";
        } else {
            $item .= $token;
        }
    }
}

Risultati:

Array
(
    [0] => Lorem
    [1] => ipsum
    [2] => dolor sit amet
    [3] => consectetur
    [4] => adipiscing elit
    [5] => dolor
)

Sono venuto qui con un complesso problema di stringa scissione simile a questo, ma nessuna delle risposte qui fatto esattamente quello che volevo - così ho scritto il mio

.

Vi metto qui solo nel caso in cui è utile a qualcun altro.

Questo è probabilmente un modo molto lento e inefficiente per farlo - ma funziona per me

.
function explode_adv($openers, $closers, $togglers, $delimiters, $str)
{
    $chars = str_split($str);
    $parts = [];
    $nextpart = "";
    $toggle_states = array_fill_keys($togglers, false); // true = now inside, false = now outside
    $depth = 0;
    foreach($chars as $char)
    {
        if(in_array($char, $openers))
            $depth++;
        elseif(in_array($char, $closers))
            $depth--;
        elseif(in_array($char, $togglers))
        {
            if($toggle_states[$char])
                $depth--; // we are inside a toggle block, leave it and decrease the depth
            else
                // we are outside a toggle block, enter it and increase the depth
                $depth++;

            // invert the toggle block state
            $toggle_states[$char] = !$toggle_states[$char];
        }
        else
            $nextpart .= $char;

        if($depth < 0) $depth = 0;

        if(in_array($char, $delimiters) &&
           $depth == 0 &&
           !in_array($char, $closers))
        {
            $parts[] = substr($nextpart, 0, -1);
            $nextpart = "";
        }
    }
    if(strlen($nextpart) > 0)
        $parts[] = $nextpart;

    return $parts;
}

L'utilizzo è il seguente. explode_adv prende 5 argomenti:

  1. Un array di caratteri che aprono un blocco - esempio [, (, ecc.
  2. Un array di caratteri che chiudono un blocco - esempio ], ), ecc.
  3. Un array di caratteri che permettono di passare un blocco - esempio ", ', ecc.
  4. Un array di caratteri che dovrebbe causare una spaccatura nella parte successiva.
  5. La stringa su cui lavorare.

Questo metodo ha probabilmente difetti - le modifiche sono i benvenuti

.
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top