Thursday, January 24, 2013

Re: How to match russian characters (alphabet) with regex

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

--
--
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

No comments:

Post a Comment