如何在PHP中使用preg_replace匹配俄语单词?

时间:2022-04-08 16:48:59

How do I go about matching a Russian word in a string (also in Russian) in PHP?

如何在PHP中使用字符串(也是俄语)匹配俄语单词?

So for example something like this:

例如,像这样的事情:

$pattern = '/слово/';
preg_replace($pattern, $replacement, $string_in_russian)

I tried utf8_encode and htmlentities with UTF-8 flag for $pattern, but it didn't work. Should I also encode $string_in_russian?

我为$ pattern尝试了UTF-8标志的utf8_encode和htmlentities,但它没有用。我还应该编码$ string_in_russian吗?

Update: Suggestion for /u flag didn't work so I'm putting the actual code I need this for. It is from a glossary plugin for Wordpress (my site is properly setup to use Russian language, and it does work, but not in this instance). So here's the code

更新:对/ u标志的建议不起作用,所以我把我需要的实际代码用于。它来自Wordpress的词汇表插件(我的网站正确设置为使用俄语,它确实有效,但在这种情况下不行)。所以这是代码

$glossary_title = $glossary_item->post_title;
$glossary_search = '/\b'.$glossary_title.'s*?\b(?=([^"]\*"[^"]\*")\*[^"]*$)/iu';
$glossary_replace = '<a'.$timestamp.'>$0</a'.$timestamp.'>';
$content_temp = preg_replace($glossary_search, $glossary_replace, $content, 1);

When I do a quick echo into HTML comment this is the kind of string I get for the pattern
/\bсловоs*?\b(?=([^"]*"[^"]")[^"]*$)/iu

当我快速回复HTML注释时,这是我得到的模式字符串/ \bсловоs*?\ b(?=([^“] *”[^“]”)[^“] * $) / IU

And well, that still doesn't seem to work. I thought maybe it was the "s" that was screwing me over (this level of regex is a bit beyond me but I assume it's there for possible plurals), but removing it didn't help.

好吧,这似乎仍然不起作用。我想也许是“s”让我搞砸了(这个级别的正则表达式有点超出我但我认为它可能是复数形式),但删除它并没有帮助。

Update #2: Okay so I decided to do a complete "blank slate" test - plain PHP file with some $content strings in English and Russian and target words to replace. Here is the code

更新#2:好的,所以我决定做一个完整的“空白平板”测试 - 普通的PHP文件,其中包含一些英文和俄文的$ content字符串以及要替换的目标字。这是代码

$content_en = 'Nulla volutpat pretium nunc, ac feugiat neque lobortis vitae. In eu sapien sit amet eros tincidunt viverra. <b style="color:purple">Proin</b> congue hendrerit felis, et consequat neque ultrices lobortis. <b style="color:purple">Proin</b> luctus bibendum libero et molestie. Sed tristique lacus a urna semper eget feugiat lacus varius. Donec vel sodales diam. <b style="color:purple">Proin</b> fringilla laoreet purus, a facilisis nisi porttitor vel. Nullam ac justo ac elit laoreet ullamcorper vel a magna. Suspendisse in arcu sapien.';
$find_en = 'proin';
$replace_with_en = '<em style="color:red">REPLACEMENT</em>';
$glossary_search = '/\b'.$find_en.'s*?\b(?=([^"]*"[^"]*")*[^"]*$)/iu';
$content_en_replaced = preg_replace($glossary_search, $replace_with_en, $content_en);

$content_ru = 'Lorem Ipsum используют потому, что тот обеспечивает более или менее стандартное заполнение шаблона, а также реальное распределение букв и пробелов в абзацах, которое не получается при простой дубликации "Здесь <b style="color:purple">ваш</b> текст.. Здесь <b style="color:purple">ваш</b> текст.. Здесь <b style="color:purple">ваш</b> текст.." Многие программы электронной вёрстки и редакторы HTML используют Lorem Ipsum в качестве текста по умолчанию.';
$find_ru = 'ваш';
$replace_with_ru = '<em style="color:red">Многие</em>';
$glossary_search = '/\b'.$find_ru.'s*?\b(?=([^"]*"[^"]*")*[^"]*$)/iu';
$content_ru_replaced = preg_replace($glossary_search, $replace_with_ru, $content_ru);

And here is a screenshot of the output http://www.flickr.com/photos/iliadraznin/5372578707/

这是输出的截图http://www.flickr.com/photos/iliadraznin/5372578707/

As you can see the English text had the target word replaced, while the Russian hasn't and the code is identical and I'm using the /u flag. The file is also UTF-8 encoded. Any suggestions? (and again, I tried removing the "s", still nothing)

正如你所看到的那样,英文文本已经替换了目标词,而俄语则没有,代码是相同的,我正在使用/ u标志。该文件也是UTF-8编码的。有什么建议么? (再次,我尝试删除“s”,仍然没有)

3 个解决方案

#1


7  

If you do a real blank slate test, you will find there's nothing wrong with the Russian - it's actually the word boundary aspect that is breaking the regex.

如果你做一个真正的空白石板测试,你会发现俄罗斯没有任何问题 - 它实际上是破坏正则表达式的边界方面。

$glossary_search = '/'.$find_ru.'/iu'; // Works fine
$glossary_search = '/\b'.$find_ru.'\b/iu'; // Breaks

Word boundary shorthand is not UTF-8 aware, so, per this question: php regex word boundary matching in utf-8 you can try the following:

单词边界速记不是UTF-8识别的,所以,根据这个问题:在utf-8中使用php正则表达式单词边界匹配你可以尝试以下方法:

$glossary_search = '/(?<!\pL)'.$find_ru.'(?!\pL)/iu';

That works fine on my test here.

这对我的测试很好。

#2


1  

For starters, you must make sure that your php file is encoded with UTF-8. Even if you do not have any UTF-8 characters in the file (they might be passed in from another file), the file must be UTF-8 for functions inside of it to work with UTF-8.

对于初学者,您必须确保您的php文件使用UTF-8编码。即使文件中没有任何UTF-8字符(它们可能从另一个文件传入),该文件也必须是UTF-8才能使其内部的函数与UTF-8一起使用。

#3


0  

"u" option in PCRE regexp's provides Unicode, so:

PCRE regexp中的“u”选项提供Unicode,因此:

<?php
  $str = 'тест бла бла бла';
  if(preg_match("'тест'isu", $str, $match))
  {
    echo $match;
  }
?>

Also, example for preg_replace:

另外,preg_replace的示例:

<?php
  $str = 'тест бла бла бла';
  echo preg_replace("'бла'isu", '', $str);
?>

#1


7  

If you do a real blank slate test, you will find there's nothing wrong with the Russian - it's actually the word boundary aspect that is breaking the regex.

如果你做一个真正的空白石板测试,你会发现俄罗斯没有任何问题 - 它实际上是破坏正则表达式的边界方面。

$glossary_search = '/'.$find_ru.'/iu'; // Works fine
$glossary_search = '/\b'.$find_ru.'\b/iu'; // Breaks

Word boundary shorthand is not UTF-8 aware, so, per this question: php regex word boundary matching in utf-8 you can try the following:

单词边界速记不是UTF-8识别的,所以,根据这个问题:在utf-8中使用php正则表达式单词边界匹配你可以尝试以下方法:

$glossary_search = '/(?<!\pL)'.$find_ru.'(?!\pL)/iu';

That works fine on my test here.

这对我的测试很好。

#2


1  

For starters, you must make sure that your php file is encoded with UTF-8. Even if you do not have any UTF-8 characters in the file (they might be passed in from another file), the file must be UTF-8 for functions inside of it to work with UTF-8.

对于初学者,您必须确保您的php文件使用UTF-8编码。即使文件中没有任何UTF-8字符(它们可能从另一个文件传入),该文件也必须是UTF-8才能使其内部的函数与UTF-8一起使用。

#3


0  

"u" option in PCRE regexp's provides Unicode, so:

PCRE regexp中的“u”选项提供Unicode,因此:

<?php
  $str = 'тест бла бла бла';
  if(preg_match("'тест'isu", $str, $match))
  {
    echo $match;
  }
?>

Also, example for preg_replace:

另外,preg_replace的示例:

<?php
  $str = 'тест бла бла бла';
  echo preg_replace("'бла'isu", '', $str);
?>