PHP 用列表中的随机单词替换单词?

发布于 2024-11-29 09:59:49 字数 181 浏览 0 评论 0原文

使用 PHP,我希望获取一段文本并搜索它,并将某些单词替换为列表中的另一个单词。

例如,

搜索文本以查找此列表中的任何单词: 漂亮、美丽、华丽、可爱、有吸引力、吸引人

,然后将此单词替换为同一列表中的另一个单词 (但不选择相同的单词)。

希望这是有道理的!

提前致谢。

Using PHP, I'm looking to take a piece of text and search through it and replace certain words with another word from the list.

e.g.

Search through the text to find any word in this list:
pretty,beautiful,gorgeous,lovely,attractive,appealing

and then replace this word with another from the same list
(but not selecting the same word).

Hope this makes sense!

thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

刘备忘录 2024-12-06 09:59:49

您可以使用 preg_replace_callback:

$random_string = '…';
$needle = array('pretty', 'beautiful', 'gorgeous', 'lovely', 'attractive', 'appealing');
$new_string = preg_replace_callback(
  array_map(
    function($v) { return '/'.preg_quote($v).'/'; }, // assuming $needle does not contain '/' 
    $needle),
  function($matches) use($needle) {
    do {
      $new = $needle[rand(0, count($needle)-1)];
    while($new != $matches[0]) {
    return $new;
  },
  $random_string);

来确保您的 $needle数组不包含在正则表达式中具有特殊含义的字符,我们称之为 preg_quote在搜索之前对数组的每个项目进行分析。

除了执行 do{}while() 循环,您还可以复制数组并删除匹配的单词(很大程度上取决于实际数据:几个项目 → 复制并删除,许多项目 → 选择一个)随机,直到与匹配的不同)

you could use preg_replace_callback:

$random_string = '…';
$needle = array('pretty', 'beautiful', 'gorgeous', 'lovely', 'attractive', 'appealing');
$new_string = preg_replace_callback(
  array_map(
    function($v) { return '/'.preg_quote($v).'/'; }, // assuming $needle does not contain '/' 
    $needle),
  function($matches) use($needle) {
    do {
      $new = $needle[rand(0, count($needle)-1)];
    while($new != $matches[0]) {
    return $new;
  },
  $random_string);

to make sure your $needle array does not contain characters which have a special meaning in a regular expression, we call preg_quote on each item of the array before searching.

instead of doing a do{}while() loop you could also copy the array and remove the matched word (pretty much depends on the actual data: few items → copy&remove, many items → pick one random until it's different from the match)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文