My question is Can i use the patterns in the java code ?? I mean if i have this code can i use pdf word in java code i'm looking to use the pattern itself and manipulate it by java so is there any way to do so ?
pdf = "."("full.pdf" | "full.pdf+html" | "pdf")
<YYINITIAL>
{
{pdf}
{
String x=pdf;
return YYEOF;
}
}
I had tried searched but the resources is little, thanks for help.