Does anybody know how to handle '\0' in java JFlex?? I tried encoding as a regular expression to be matched like
\0 { /* DO nothing */ }
but it did not work. The documentation does not provide any information. The reason I need this is because I am handling some strings coming from a C/C++ source.
Regards.