Risposte:
$newstr = substr_replace($oldstr, $str_to_insert, $pos, 0);
$str = substr($oldstr, 0, $pos) . $str_to_insert . substr($oldstr, $pos);
Utilizzare la funzione stringInsert anziché la funzione putinplace. Stavo usando la funzione successiva per analizzare una query mysql. Anche se l'output sembrava a posto, la query ha provocato un errore che mi ha richiesto un po 'di tempo per rintracciarlo. La seguente è la mia versione della funzione stringInsert che richiede solo un parametro.
function stringInsert($str,$insertstr,$pos)
{
$str = substr($str, 0, $pos) . $insertstr . substr($str, $pos);
return $str;
}
Ho una mia vecchia funzione per questo:
function putinplace($string=NULL, $put=NULL, $position=false)
{
$d1=$d2=$i=false;
$d=array(strlen($string), strlen($put));
if($position > $d[0]) $position=$d[0];
for($i=$d[0]; $i >= $position; $i--) $string[$i+$d[1]]=$string[$i];
for($i=0; $i<$d[1]; $i++) $string[$position+$i]=$put[$i];
return $string;
}
// Explanation
$string='My dog dont love postman'; // string
$put="'"; // put ' on position
$position=10; // number of characters (position)
print_r( putinplace($string, $put, $position) ); //RESULT: My dog don't love postman
Questa è una piccola potente funzione che svolge il suo lavoro in modo impeccabile.
Questa è stata anche la mia soluzione semplice per aggiungere testo alla riga successiva dopo aver trovato la parola chiave.
$oldstring = "This is a test\n#FINDME#\nOther text and data.";
function insert ($string, $keyword, $body) {
return substr_replace($string, PHP_EOL . $body, strpos($string, $keyword) + strlen($keyword), 0);
}
echo insert($oldstring, "#FINDME#", "Insert this awesome string below findme!!!");
Produzione:
This is a test
#FINDME#
Insert this awesome string below findme!!!
Other text and data.
Volevo solo aggiungere qualcosa: ho trovato la risposta di Tim Cooper molto utile, l'ho usata per creare un metodo che accetta una serie di posizioni e fa l'inserimento su tutte, quindi ecco:
EDIT: Sembra che la mia vecchia funzione presupponesse che$insertstr
fosse solo 1 carattere e che l'array fosse ordinato. Funziona per lunghezza di caratteri arbitraria.
function stringInsert($str, $pos, $insertstr) {
if (!is_array($pos)) {
$pos = array($pos);
} else {
asort($pos);
}
$insertionLength = strlen($insertstr);
$offset = 0;
foreach ($pos as $p) {
$str = substr($str, 0, $p + $offset) . $insertstr . substr($str, $p + $offset);
$offset += $insertionLength;
}
return $str;
}
Semplice e un altro modo di risolvere:
function stringInsert($str,$insertstr,$pos)
{
$count_str=strlen($str);
for($i=0;$i<$pos;$i++)
{
$new_str .= $str[$i];
}
$new_str .="$insertstr";
for($i=$pos;$i<$count_str;$i++)
{
$new_str .= $str[$i];
}
return $new_str;
}
function insSubstr($str, $sub, $posStart, $posEnd){
return mb_substr($str, 0, $posStart) . $sub . mb_substr($str, $posEnd + 1);
}
$posEnd
non è necessario. La domanda riguardava l'inserimento della sottostringa dopo la posizione specificata.
Strane risposte qui! È possibile inserire facilmente stringhe in altre stringhe con sprintf [collegamento alla documentazione]. La funzione è estremamente potente e può gestire anche più elementi e altri tipi di dati.
$color = 'green';
sprintf('I like %s apples.', $color);
ti dà la stringa
I like green apples.
'I like apples.'
come variabile. Quindi dobbiamo %s
prima inserire nella stringa, che ritorna al problema originale