The regex info material suggests that \\c6
should match digit characters.
In UTF-8 encoded buffers it doesn't; some of the other category letters work as expected (l
, |
, a
).
Shouldn't \\c6*
match 456
in test456test
? What do I overlook, misunderstand?
Nd
.[0-9]
what I used instead as\c6
is not what it looks. – gavenkoa Aug 29 '21 at 20:07general-category
. – npostavs Aug 30 '21 at 13:38