1

文字列内に複数あるランダムな単語を1つ置き換えたい。

だから、文字列が

$str = 'I like blue, blue is my favorite colour because blue is very nice and blue is pretty';

そして、単語 blue を red に置き換えたいとしましょうが、ランダムな位置で 2 回だけです。

したがって、関数が実行された後、出力は次のようになります

I like red, blue is my favorite colour because red is very nice and blue is pretty

もう一つは

I like blue, red is my favorite colour because blue is very nice and red is pretty

したがって、同じ単語を複数回置き換えたいのですが、毎回異なる位置に置きます。

私は preg_match を使用することを考えましたが、peing 置換される単語の位置もランダムであるというオプションはありません。

誰もこれを達成する方法の手がかりを持っていますか?

4

4 に答える 4

3

一見非常に単純なものに正規表現を使用するのは嫌ですが、正確にn個の置換を保証するために、ここで役立つと思います。不確定な長さのリストからのn 個のランダムな項目 (改善)。array_rand()

<?php

    function replace_n_occurences ($str, $search, $replace, $n) {

        // Get all occurences of $search and their offsets within the string
        $count = preg_match_all('/\b'.preg_quote($search, '/').'\b/', $str, $matches, PREG_OFFSET_CAPTURE);

        // Get string length information so we can account for replacement strings that are of a different length to the search string
        $searchLen = strlen($search);
        $diff = strlen($replace) - $searchLen;
        $offset = 0;

        // Loop $n random matches and replace them, if $n < 1 || $n > $count, replace all matches
        $toReplace = ($n < 1 || $n > $count) ? array_keys($matches[0]) : (array) array_rand($matches[0], $n);
        foreach ($toReplace as $match) {
            $str = substr($str, 0, $matches[0][$match][1] + $offset).$replace.substr($str, $matches[0][$match][1] + $searchLen + $offset);
            $offset += $diff;
        }

        return $str;

    }

    $str = 'I like blue, blue is my favorite colour because blue is very nice and blue is pretty';

    $search = 'blue';
    $replace = 'red';
    $replaceCount = 2;

    echo replace_n_occurences($str, $search, $replace, $replaceCount);

動いているのを見る

于 2012-05-22T15:24:54.620 に答える
2
echo preg_replace_callback('/blue/', function($match) { return rand(0,100) > 50 ? $match[0] : 'red'; }, $str);
于 2012-05-22T15:02:28.877 に答える
1

さて、次のアルゴリズムを使用できます。

  1. 文字列を置換するランダムな回数を計算します
  2. 文字列を配列に分解する
  3. その配列では、1 から 100 までのランダムな値が % 3 (たとえば) の場合にのみ、出現する文字列を置き換えます。
  4. ポイント1で計算された数を減らします。
  5. 数値が 0 になるまで繰り返します。
于 2012-05-22T14:55:18.767 に答える
0
<?php
$amount_to_replace = 2;
$word_to_replace = 'blue';
$new_word = 'red';

$str = 'I like blue, blue is my favorite colour because blue is very nice and blue is pretty';

$words = explode(' ', $str); //convert string to array of words
$blue_keys = array_keys($words, $word_to_replace); //get index of all $word_to_replace

if(count($blue_keys) <= $amount_to_replace) { //if there are less to replace, we don't need to randomly choose.  just replace them all
    $keys_to_replace = array_keys($blue_keys);
}
else {
    $keys_to_replace = array();
    while(count($keys_to_replace) < $amount_to_replace) { //while we have more to choose
        $replacement_key = rand(0, count($blue_keys) -1);
        if(in_array($replacement_key, $keys_to_replace)) continue; //we have already chosen to replace this word, don't add it again
        else {
            $keys_to_replace[] = $replacement_key;
        }
    }
}

foreach($keys_to_replace as $replacement_key) {
    $words[$blue_keys[$replacement_key]] = $new_word;
}

$new_str = implode(' ', $words); //convert array of words back into string
echo $new_str."\n";
?>

注意:これは最初の青を置き換えないことに気づきました。これは、単語配列に「青」として入力されているため、array_keys呼び出しでは一致しないためです。

于 2012-05-22T15:03:43.047 に答える