gpt4 book ai didi

php - 从字符串中删除特定单词

转载 作者:行者123 更新时间:2023-12-03 00:40:11 25 4
gpt4 key购买 nike

我想从字符串中删除字符串中的整个单词。

我创建了一组禁用词:

$wordlist = array("or", "and", "where", ...)

现在我删除这些词:

foreach($wordlist as $word)
$string = str_replace($word, "", $string);

问题是上面的代码还删除了包含“sand”或“more”等禁用词的词。

最佳答案

为此,您可以使用 preg_replace和单词边界:

$wordlist = array("or", "and", "where");

foreach ($wordlist as &$word) {
$word = '/\b' . preg_quote($word, '/') . '\b/';
}

$string = preg_replace($wordlist, '', $string);

编辑:Example .

关于php - 从字符串中删除特定单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9342149/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com