On 1/24/13, Marcin Szamotulski <[email protected]> wrote: > On 13:43 Thu 24 Jan , av wrote: >> Does someone know how to match russian characters (alphabet) with regex. I >> tried \w but it does match them. >> >> Thanks >> >> -- >> -- >> You received this message from the "vim_use" maillist. >> Do not top-post! Type your reply below the text you are replying to. >> For more information, visit http://www.vim.org/maillist.php >> >> > > Apparently I haven't found anything better than \S. If you need > something more robust you can always type: > /[αβξ] > (sorry I used Greek symbols since I don't know the Russian ones). > You can input them as digraphs (basically with i_CTRL-K, see :h i_^k, > :h :digraphs). > > Best, > Marcin
If Vim 'encoding' is utf-8 or cp1251 you can match Russian alphabet with /[А-я,Ё,ё] Regards, Vlad -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
