私はPHPで次のことをやろうとしていますが、あらゆる助けをいただければ幸いです。
- 文字列内の文字の各インスタンスの位置を配列に格納します
- for ループを使用して配列をナビゲートし、各位置の文字、配列内の各要素を別の文字に置き換えます。
これが私がこれまでに持っているものです:
$character1="/";
$character2="%";
$string1="hello / how / are / you / doing";
$characterPositions = array();
/* store locations of $character1 in $string1 */
foreach($characterPositions as $position){
/* replace what is at each $position in string $string1 */
}
str_replace がこれを行うことは知っていますが、上記の方法でこれを行う方法を学びたいです。