Tagged Questions

6
votes
3answers
471 views

How can I match a Russian word using preg_replace in PHP?

How do I go about matching a Russian word in a string (also in Russian) in PHP? So for example something like this: $pattern = '/слово/'; preg_replace($pattern, $replacement, $string_in_russian) I ...
5
votes
2answers
637 views

How can I detect Russian spam posts with Perl?

I have an English language forum site written in perl that is continually bombarded with spam in Russian. Is there a way using Perl and regex to detect Russian text so I can block it?
2
votes
1answer
528 views

How can I make a case-insensitive regexp match for Russian letters?

I have list of catalog paths and need to filter out some of them. My match pattern is in a non-Unicode encoding. I tried the following: require 5.004; use POSIX qw(locale_h); my $old_locale = ...