What caracters are in [[:jletterdigit:]] in JFlex ? I need to translate [[:jletterdigit:]] to classical regex.

link|improve this question

60% accept rate
feedback

1 Answer

A character may be part of a Java identifier if any of the following are true:

it is a letter

it is a currency symbol (such as '$')

it is a connecting punctuation character (such as '_')

it is a digit

it is a numeric letter (such as a Roman numeral character)

it is a combining mark

it is a non-spacing mark

isIdentifierIgnorable returns true for the character

from the Java API

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.