I am new to ANTLR4 and have a trouble.
I want to have the code accept integers with _ between digits, but the output would not include _ characters. For example: it would accept 12_34_5 and the expected token would be 12345.
Is there a way to do that in ANTLR4?