Related articles |
---|
Simple JLex problem - Help! royalpuk@hotmail.com (2001-12-11) |
Re: Simple JLex problem - Help! lee_lau@hotmail.com (2001-12-20) |
Re: Simple JLex problem - Help! lee_lau@hotmail.com (2001-12-20) |
From: | lee_lau@hotmail.com (Luiz Lau) |
Newsgroups: | comp.compilers |
Date: | 20 Dec 2001 00:44:48 -0500 |
Organization: | http://groups.google.com/ |
References: | 01-12-057 |
Keywords: | Java, lex |
Posted-Date: | 20 Dec 2001 00:44:48 EST |
Have you tried:
<YYINITIAL> "\^" {
return new Symbol(sym.cap);
}
<YYINITIAL> "\\" {
return new Symbol(sym.slash);
}
since the single backslash is a reserved character in JLex.
-- lee
----- Original Message -----
royalpuk@hotmail.com (K Herner) wrote
I am trying to get JLex recognise "/\" as a valid token, but it
doesn't seem to like it. "/" by itself is ok...
Return to the
comp.compilers page.
Search the
comp.compilers archives again.