Come posso rimuovere parte di una stringa?
Stringa di esempio: "REGISTER 11223344 here"
Come posso rimuovere "11223344"
dalla stringa di esempio sopra?
REGISTER here
nel database?
Come posso rimuovere parte di una stringa?
Stringa di esempio: "REGISTER 11223344 here"
Come posso rimuovere "11223344"
dalla stringa di esempio sopra?
REGISTER here
nel database?
Risposte:
Se scegli come target specifico "11223344", utilizza str_replace
:
// str_replace($search, $replace, $subject)
echo str_replace("11223344", "","REGISTER 11223344 here");
Puoi usare str_replace () , che è definito come:
str_replace($search, $replace, $subject)
Quindi potresti scrivere il codice come:
$subject = 'REGISTER 11223344 here' ;
$search = '11223344' ;
$trimmed = str_replace($search, '', $subject) ;
echo $trimmed ;
Se hai bisogno di una migliore corrispondenza tramite espressioni regolari puoi usare preg_replace () .
supponendo che 11223344 non sia costante
$string="REGISTER 11223344 here";
$s = explode(" ",$string);
unset($s[1]);
$s = implode(" ",$s);
print "$s\n";
str_replace(find, replace, string, count)
Come da esempio OP:
$Example_string = "REGISTER 11223344 here";
$Example_string_PART_REMOVED = str_replace('11223344', '', $Example_string);
// will leave you with "REGISTER here"
// finally - clean up potential double spaces, beginning spaces or end spaces that may have resulted from removing the unwanted string
$Example_string_COMPLETED = trim(str_replace(' ', ' ', $Example_string_PART_REMOVED));
// trim() will remove any potential leading and trailing spaces - the additional 'str_replace()' will remove any potential double spaces
// will leave you with "REGISTER here"
Quando è necessaria la corrispondenza basata su regole, è necessario utilizzare regex
$string = "REGISTER 11223344 here";
preg_match("/(\d+)/", $string, $match);
$number = $match[1];
Che corrisponderà al primo set di numeri, quindi se devi essere più specifico prova:
$string = "REGISTER 11223344 here";
preg_match("/REGISTER (\d+) here/", $string, $match);
$number = $match[1];
$match
array. Rimuovere le parentesi quindi accedere tramite $match[0]
.
substr () è una funzione php incorporata che restituisce parte di una stringa. La funzione substr () prenderà una stringa come input, la forma dell'indice in cui si desidera tagliare la stringa. e un parametro opzionale è la lunghezza della sottostringa. Puoi vedere la documentazione corretta e il codice di esempio su http://php.net/manual/en/function.substr.php
NOTA: l'indice per una stringa inizia con 0.
In modo dinamico, se si desidera rimuovere (a) parti da (a) indici fissi di una stringa, utilizzare questa funzione:
/**
* Removes index/indexes from a string, using a delimiter.
*
* @param string $string
* @param int|int[] $index An index, or a list of indexes to be removed from string.
* @param string $delimiter
* @return string
* @todo Note: For PHP versions lower than 7.0, remove scalar type hints (i.e. the
* types before each argument) and the return type.
*/
function removeFromString(string $string, $index, string $delimiter = " "): string
{
$stringParts = explode($delimiter, $string);
// Remove indexes from string parts
if (is_array($index)) {
foreach ($index as $i) {
unset($stringParts[(int)($i)]);
}
} else {
unset($stringParts[(int)($index)]);
}
// Join all parts together and return it
return implode($delimiter, $stringParts);
}
Per il tuo scopo:
remove_from_str("REGISTER 11223344 here", 1); // Output: REGISTER here
Uno dei suoi usi è quello di eseguire stringhe simili a comandi, che conosci le loro strutture.
Il frammento seguente stamperà "REGISTRA qui"
$string = "REGISTER 11223344 here";
$result = preg_replace(
array('/(\d+)/'),
array(''),
$string
);
print_r($result);
L'API preg_replace () ci utilizza come indicato di seguito.
$result = preg_replace(
array('/pattern1/', '/pattern2/'),
array('replace1', 'replace2'),
$input_string
);
preg_replace()
questo caso non vi è assolutamente motivo di passare array . Né vi è alcun vantaggio nell'utilizzare un gruppo di acquisizione.
Eseguire le seguenti operazioni
$string = 'REGISTER 11223344 here';
$content = preg_replace('/REGISTER(.*)here/','',$string);
Ciò restituirebbe "REGISTRATIqui"
o
$string = 'REGISTER 11223344 here';
$content = preg_replace('/REGISTER (.*) here/','',$string);
Ciò restituirebbe "REGISTRATI qui"
remove
, ma sembra probabile che intendi inextract
modo che la stringa di destinazione possa essere archiviata nel database.