gpt4 book ai didi

php - 为什么\b 对于某些语言不能正常工作?

转载 作者:可可西里 更新时间:2023-10-31 22:52:54 25 4
gpt4 key购买 nike

这是我的代码:(它适用于英语)

$str1 = "itt is a testt";
$str2 = "it is a testt";
$str3 = "itt is a test";
$str4 = "it is a test";

echo preg_match("[\b(?:it|test)\b]", $str1) ? 1 : 2; // output: 2 (do not match)
$str2 // output: 1 (it matches)
$str3 // output: 1 (it matches)
$str4 // output: 1 (it matches)

但我不知道为什么,上面的 REGEX 对于波斯语不能正常工作:(它总是返回 1)

$str1 = "دیوار";
$str2 = "دیوارر";

echo preg_match("/[\b(?:دیوار|خوب)\b]/u", $str1) ? 1 : 2; // output: 1
echo preg_match("/[\b(?:دیوار|خوب)\b]/u", $str2) ? 1 : 2; // output: 1 (it should be 2)

我该如何解决?

最佳答案

您已将正则表达式放入 "/[\b(?:دیوار|خوب)\b]/u" 中的字符类中,删除 [] 来自它:

"/\b(?:دیوار|خوب)\b/u"

您可以用替代方法替换 \b:

"/(?:^|\s)(?:دیوار|خوب)(?:\s|$)/u"

您还可以将 \s 更改为包含阿拉伯字母的否定字符类。我不认识他们,但它就像:[^دیوارخوب]...

关于php - 为什么\b 对于某些语言不能正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33671418/

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