Hi.
In .NET, \p{L}
matches any ascii or non-ascii letter (so it will match both a
and ü
).
http://www.regular-expressions.info/unicode.html#prop
Is there a Vim equivalent for this?
In Vim \a
or \w
will only match characters in range [a-z]
(or [0-9A-Za-z_]
).