gpt4 book ai didi

php - 在 PHP 中过滤字符串上的单词

转载 作者:行者123 更新时间:2023-12-04 15:32:54 24 4
gpt4 key购买 nike

我有一个字符串,其中每个单词的开头都大写。现在我想过滤它,就像它可以检测到单词链接“as、the、of、in 等”一样,它将被转换为小写字母。我有一个代码可以将其替换并转换为小写,但仅适用于 1 个单词,如下所示:

$str = "This Is A Sample String Of Hello World";
$str = preg_replace('/\bOf\b/', 'of', $str);

output: This Is A Sample String of Hello World

所以我想要的是过滤其他单词,例如字符串上的“is,a”。为每个要过滤的词重复 preg_replace 很奇怪。

谢谢!

最佳答案

使用preg_replace_callback() :

$str = "This Is A Sample String Of Hello World";
$str = ucfirst(preg_replace_callback(
'/\b(Of|Is|A)\b/',
create_function(
'$matches',
'return strtolower($matches[0]);'
),
$str
));
echo $str;

Displays "This is a Sample String of Hello World".

关于php - 在 PHP 中过滤字符串上的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10854401/

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