
Hi,
I'm currently evaluating the syntax editor and I'm trying to highlight hexdigits. I have the following pattern:
<RegexPatternGroup TokenId="9" TokenKey="HexNumber" ClassificationTypeKey="Number" Pattern="{HexDigit}+" LookAheadPattern="{NonHexDigit}|\z" />
This works fine for hex decimals starting with a number like this:
00400ABC
but it does not work if it starts with a letter like:
ABC00400
I've also tried common regex which works fine in C# but in your script editor it doesn't. What I am doing wrong?